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
Try using this this work for me
select * from `table_name` ORDER BY STR_TO_DATE(start_date,"%d-%m-%Y") ASC
where start_date is the field name