Reputation: 1048
I have Posts table with two attributes "last_comment" and "created" and I save the unix time stamp date , I want to order the posts by the created date and also the last_comment Descending .
Upvotes: 0
Views: 316
Reputation: 48024
Here is how to sort rows in MySql
http://dev.mysql.com/doc/refman/5.0/en/sorting-rows.html
Upvotes: 0