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
SELECT CONVERT(char(19), CAST(date AS datetime), 101) as [date] FROM tbemp ORDER BY convert(datetime, date, 101) ASC