I'm trying to sort the order by 2 INT columns but it doesn't seem to recognize the 2nd sort.
Everything in Google says to do it like this:
Quote:
SELECT id,name,views FROM posts ORDER BY id ASC, views DESC LIMIT 0,14
|
But that gives me this, which is only sorting the ID's and not the views also:
