mysql sort by date column

Solutions on MaxInterview for mysql sort by date column by the best coders in the world

showing results for - "mysql sort by date column"
Simon
28 May 2018
1SELECT * FROM members ORDER BY date_of_birth DESC; -- Dates are newest at the top of the table
2SELECT * FROM members ORDER BY date_of_birth; -- Dates are oldest at the top of the table