I was wondering if there was a way to get the number of results from a MySQL query, and at the same time limit the results.
The way pagination works (as I understand it) is to first do something like:
query = SELECT COUNT(*) FROM `table` WHERE `some_condition`
After I get the num_rows(query)
, I have the number of results. But then to actually limit my results, I have to do a second query:
query2 = SELECT `fields` FROM `table` WHERE `some_condition` LIMIT 0, 10
Is there any way to both retrieve the total number of results that would be given, AND limit the results returned in a single query? Or are there any other efficient ways of achieving this?
No, that's how many applications that want to paginate have to do it. It's reliable and bullet-proof, albeit it makes the query twice, but you can cache the count for a few seconds and that will help a lot.
The other way is to use SQL_CALC_FOUND_ROWS
clause and then call SELECT FOUND_ROWS()
. Apart from the fact you have to put the FOUND_ROWS()
call afterwards, there is a problem with this: there is a bug in MySQL that this tickles which affects ORDER BY
queries making it much slower on large tables than the naive approach of two queries.