I have the following SQL query , it seems to run ok , but i am concerned as my site grows it may not perform as expected ,I would like some feeback as to how effective and efficient this query really is:
select * from articles where category_id=XX AND city_id=XXX GROUP BY user_id ORDER BY created_date DESC LIMIT 10;
Basically what i am trying to achieve - is to get the newest articles by created_date limited to 10 , articles must only be selected if the following criteria are met :
- City ID must equal the given value
- Category ID must equal the given value
- Only one article per user must be returned
- Articles must be sorted by date and only the top 10 latest articles must be returned
EXPLAIN SELECT ...will give you more info than we can. Do you have an index on the foreign key columns? If so, you're good. – Interrobang Dec 29 '11 at 9:45