Can you please help me in solving this problem. I am trying to order the results of an SQL query by date, but I\'m not getting the results I need.
The query I\'m usi
Unsure what dbms you're using however I'd do it this way in Microsoft SQL:
select [date] from tbemp order by cast([date] as datetime) asc