MySql通过Limit限制查询的行数
生活随笔
收集整理的這篇文章主要介紹了
MySql通过Limit限制查询的行数
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
mysql查詢語句,通過limit來限制查詢的行數。
例如:
select name from usertb where age > 20 limit 0, 1; //限制從第一條開始,顯示1條
select name from usertb where age > 20 limit ?1; //同上面的一個效果
select name from usertb where age > 20 limit 4, 1; //顯示從第五條開始,顯示1條
select name from usertb order by age desc?limit 4; 倒序排列年齡,支線前4行
總結
以上是生活随笔為你收集整理的MySql通过Limit限制查询的行数的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: hdu-4825(01字典树)
- 下一篇: hdu-2204(容斥原理)