Thanks for the reply, but maybe I didn't phrase it correctly.
SELECT * FROM myTable (let's say 200 records)
SELECT * FROM myTable LIMIT 0, XXX (I need this to be the same 200 records)
My question is: what is XXX
When I said about duplicating the data, it's because I don't want two separate queries to handle this. I'm using the LIMIT for pagination (duh...)
In other words, I don't want two queries, one to get ALL and one to get within the LIMIT. I want to have one query for GET ALL and GET ALL LIMIT
And my query is really complicated, but what I describe above is really what I need.