Colonne MySQL Tri by Date

SELECT * FROM members ORDER BY date_of_birth DESC; -- Dates are newest at the top of the table
SELECT * FROM members ORDER BY date_of_birth; -- Dates are oldest at the top of the table
Powerful Penguin