📜  mysql 按日期列排序 - SQL 代码示例

📅  最后修改于: 2022-03-11 15:04:58.549000             🧑  作者: Mango

代码示例1
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