i am making a pagination method, what i did was: first query will count all results second query will do the normal select with LIMIT
is their technically any other way to do this with only one query? for example:
SELECT count(*) from table
SELECT * FROM table LIMIT 0,10
is their anyway to know total count as well in the second query?