Mysql
 sql >> Datenbank >  >> RDS >> Mysql

So wählen Sie das älteste Datum aus MySQL aus

Sie können nach dem Datumsfeld in Ihrer Datenbank bestellen. Für älteste:

SELECT * FROM table WHERE condition ORDER BY dateField ASC LIMIT 1

Für zwei Älteste:

SELECT * FROM table WHERE condition ORDER BY dateField ASC LIMIT 2

usw, usw, ...