select * from table limit 5; --返回前5行 select * from table limit 0,5; --同上,返回前5行 select * from table limit 5,10; --返回6-15行 limit 1770,15; 这个意思是从1770行开始 取15行