I am currently running this query:
SELECT t.videolink, t.userid, t.tag
FROM (SELECT * FROM tagstrend ORDER BY timestamp DESC) AS t
WHERE t.timestamp > ?
GROUP BY t.tag
ORDER BY SUM(t.tagcount) DESC
LIMIT ?, 20;
What I am doing is reversing the order of the table that I am selecting from before I run the rest of the query because when the I use "GROUP BY" I need that to take the top result which is the most recent row in the database.
However doing this will take a hit on the performance/speed of the query because it needs to reverse the order of the table before it can query it.
My question is, is there a way to set the default order of the table to be reversed? Because I will always be SELECTing from this table in reverse order.
Unless someone knows a way of grouping by the most recent row in the database?
SELECTon aSELECT *instead of just writing a single call that does what you want? – tadman Oct 27 '12 at 4:00selectstatements can have an order (and only if anorder bywas specified). – a_horse_with_no_name Oct 27 '12 at 8:37