I think the following queries will give you the desired result
SELECT * FROM PERSON_TBL LIMIT 0, 10000
@ 1st query I would like to retrieve only the first 10,000 records
SELECT * FROM PERSON_TBL LIMIT 10000,10000
@ 2nd query I would like to retrieve only records from 10,000 - 20,000