學(xué)生表:
班級表:
當(dāng)數(shù)據(jù)量過大時(shí),在一頁中查看數(shù)據(jù)是一件非常麻煩的事情
1.語法
select * from 表名 limit start,count
2.說明
從start開始尺锚,獲取count條數(shù)據(jù)(start是從0開始的)
例:查詢前3行男生信息
select * from students where gender=1 limit 0,3;
3.分頁
已知:每頁顯示m條數(shù)據(jù)屹逛,當(dāng)前顯示第n頁
-
求總頁數(shù):此段邏輯后面會在python中實(shí)現(xiàn)
- 查詢總條數(shù)p1
- 使用p1除以m得到p2
- 如果整除則p2為總數(shù)頁
- 如果不整除則p2+1為總頁數(shù)
求第n頁的數(shù)據(jù)
select * from students where is_delete=0 limit (n-1)*m,m