Usa:
SELECT field_name
FROM table_name
ORDER BY id DESC
Per impostazione predefinita, MySQL mostrerà i risultati in ordine crescente. Se vuoi mostrarli in ordine inverso, usa ORDER BY field_name DESC
.
Puoi utilizzare id o date come nome del campo.