亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

mysql 查詢(xún)第幾行到第幾行記錄的語(yǔ)句

 更新時(shí)間:2011年07月01日 01:28:21   作者:  
mysql 查詢(xún)第幾行到第幾行記錄 查詢(xún)最后一行和第一行記錄 查詢(xún)前幾行和后幾行記錄
1、查詢(xún)第一行記錄:
select * from table limit 1
2、查詢(xún)第n行到第m行記錄
select * from table1 limit n-1,m-n;
SELECT * FROM table LIMIT 5,10;返回第6行到第15行的記錄
select * from employee limit 3,1; // 返回第4行
3、查詢(xún)前n行記錄
select * from table1 limit 0,n;

select * from table1 limit n;
4、查詢(xún)后n行記錄
select * from table1 order by id desc dlimit n;//倒序排序,取前n行 id為自增形式
5、查詢(xún)一條記錄($id)的下一條記錄
select * from table1 where id>$id order by id asc dlimit 1
6、查詢(xún)一條記錄($id)的上一條記錄
select * from table1 where id<$id order by id desc dlimit 1

相關(guān)文章

最新評(píng)論