evenstar7139
02-10-2009, 09:03 PM
SELECT * FROM thread_reports ORDER BY report_datetime DESC, resolved DESC
It's completely ignoring the "resolved" at the end. Even if I change it to this:
SELECT * FROM thread_reports ORDER BY report_datetime, resolved
But if I do this:
SELECT * FROM thread_reports ORDER BY resolved
Then it makes the "resolved" column a factor in how it orders the results.
Soooo what the heck is going on? Why does it ignore resolved except when it's by itself?
It's completely ignoring the "resolved" at the end. Even if I change it to this:
SELECT * FROM thread_reports ORDER BY report_datetime, resolved
But if I do this:
SELECT * FROM thread_reports ORDER BY resolved
Then it makes the "resolved" column a factor in how it orders the results.
Soooo what the heck is going on? Why does it ignore resolved except when it's by itself?