Forum Moderators: open
It appears that you still need two statements though - one with
SELECT SQL_CALC_FOUND_ROWS
to count the number of rows and save that for later and
SELECT FOUND_ROWS()
to get the number.
But at least it means that you don't have to run the whole query again without the LIMIT.