RDOHELP72.HLB — Value expr, statistical_expression, Format MIN
--> MIN --> value-expr --> OF --> rse -->
Find the job title with the smallest minimum salary:
FOR J IN JOBS WITH J.MINIMUM_SALARY =
MIN JM.MINIMUM_SALARY OF JM IN JOBS
PRINT J.JOB_TITLE,
J.MINIMUM_SALARY
END_FOR