标签:
分页方式二:
? Select * from table WHERE id >= ( select id
from table limit 10000,1 ) limit 10;
• 分页方式三:
? SELECT * FROM table INNER JOIN (SELECT id
FROM table LIMIT 10000,10) USING (id) ;
标签:
原文地址:http://www.cnblogs.com/godfatherback/p/5852354.html