How do I order records in a PHP query to MySQL by a field that contains TIME() timestamps in descending order?
views:
76answers:
1
+4
A:
Use the ORDER BY clause like this:
SELECT …
FROM …
ORDER BY timestamp_field DESC
Gumbo
2010-08-16 16:25:04