Domanda

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 :

  1. City ID must equal the given value
  2. Category ID must equal the given value
  3. Only one article per user must be returned
  4. Articles must be sorted by date and only the top 10 latest articles must be returned
È stato utile?

Soluzione

You've got a GROUP BY clause which only contains one column, but you are pulling all the columns there are without aggregating them. Do you realise that the values returned for the columns not specified in GROUP BY and not aggregated are not guaranteed?

You are also referencing such a column in the ORDER BY clause. Since the values of that column aren't guaranteed, you have no guarantee what rows are going to be returned with subsequent invocations of this script even in the absence of changes to the underlying table.

So, I would at least change the ORDER BY clause to something like this:

ORDER BY MAX(created_date)

or this:

ORDER BY MIN(created_date)

Altri suggerimenti

some potential improvements (for best query performance):

  • make sure you have an index on all columns you query
    note: check if you really need an index on all columns because this has a negative performance when the BD has to build the index. -> for more details take a look here: http://dev.mysql.com/doc/refman/5.1/en/optimization-indexes.html
  • SELECT * would select all columns of the table. SELECT only the ones you really require...
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top