开发者

php & mySQL: Which of the following query is faster? Why?

  1. Which of the following 3 Queries will be faster? Why?
  2. I use such queries with a lot of other joins a lot within my app. so is there any way I can benchmark their speed? If yes, can you please mention what it is/they are?

Query 1:

$q = "SELECT COUNT(books.id) FROM books 
IN开发者_JAVA百科NER JOIN books_type ON books.id = books_type.id
WHERE books_type.book_type = 'Comedy'";

Query 2:

$q = "SELECT COUNT(*) FROM books 
INNER JOIN books_type ON books.id = books_type.id
WHERE books_type.book_type = 'Comedy'";

Query 3:

$q = "SELECT books.id FROM books 
INNER JOIN books_type ON books.id = books_type.id
WHERE books_type.book_type = 'Comedy'";

$books_count = mysql_num_rows($q);

Thank you.


You can try EXPLAIN query_here to find out.

For example:

EXPLAIN SELECT books.id FROM books 
INNER JOIN books_type ON books.id = books_type.id
WHERE books_type = 'Comedy'

This will give you some information on each query and how they perform. More information in the MySQL manual for the EXPLAIN statement:

"When you precede a SELECT statement with the keyword EXPLAIN, MySQL displays information from the optimizer about the query execution plan. That is, MySQL explains how it would process the SELECT, including information about how tables are joined and in which order"

http://dev.mysql.com/doc/refman/5.0/en/using-explain.html

I also recommend this tutorial for optimizing MySQL queries in Database Journal:

http://www.databasejournal.com/features/mysql/article.php/1382791/Optimizing-MySQL-Queries-and-Indexes.htm


Even though you can easily test it yourself, here's an article that goes into the why's. According to it, the second one should be fastest.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜