//查詢前5條記錄spa
select * from table_name limit 5;it
//查詢從下標爲5開始的前10條記錄table
select * from table_name limit 5,10;select