i have to_char a date in my script and giving it a heading of Step14 completed date:
TO_CHAR("TL_EVENTS"."COMPLETED_DATE", 'DD/MM/YYYY') "Step14 completed date"
at the end of the script, i'm trying to order by this date:
ORDER BY
"Step14 completed date"
my question is: how can i get the script to order by the month, then the day, then the year in ascending order?
thank you.
TO_CHAR("TL_EVENTS"."COMPLETED_DATE", 'DD/MM/YYYY') "Step14 completed date"
at the end of the script, i'm trying to order by this date:
ORDER BY
"Step14 completed date"
my question is: how can i get the script to order by the month, then the day, then the year in ascending order?
thank you.