List of expression elements / Date and time operators |
The MDY() operator creates a date from month, day and year units.
MDY ( expr1, expr2, expr3 )
The MDY() operator builds a date value with 3 integers representing the month, day and year.
The result is a DATE value.
This function is sensitive to the C1 modifier of the DBDATE environment variable, defining a Ming Guo date format.
MAIN DISPLAY MDY ( 12, 3+2, 1998 ) END MAIN