I believe I didn't explain myself correctly.
I used the MDY function to avoid as explicit date expression that depends on the DBDATE variable (which defines the format).
If you have a column of type DATE this problem does not happen.
In any case, if you really wanted to do something like that, you need to consider the fact that MDY takes 3 parameters. Month, Day and Year.
As such you could do something like:
MDY (MONTH(date_column), DAY(date_column), YEAR(date_column))
But assuming date_column is a date/datetime datatype this would be useless.
Regards