MySql第幾行到第幾行語句

2022-05-23 19:06:11 字數 605 閱讀 8113

1、查詢第一行記錄: 

select * from table limit 1 

2、查詢第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、查詢前n行記錄 

select * from table1 limit 0,n; 

或 select * from table1 limit n; 

4、查詢後n行記錄 

select * from table1 order by id desc dlimit n;//倒序排序,取前n行 id為自增形式 

5、查詢一條記錄($id)的下一條記錄 

select * from table1 where id>$id order by id asc dlimit 1 

6、查詢一條記錄($id)的上一條記錄 

select * from table1 where id<$id order by id desc dlimit 1

mysql 查詢第幾行到第幾行記錄的語句

1 查詢第一tljvjsry行記錄 seletljvjsryct from table limit 1 2 查詢第n行到第m行記錄 select from table1 limwww.cppcns.comit n 1,m n select from table limit 5,10 返回第6行到第1...

mysql查詢第幾行到第幾行記錄

1 查詢第一行記錄 select from table limit 1 2 查詢第n行到第m行記錄 select from table1 limit n 1,m n select from table limit 5,10 返回第6行到第15行的記錄 select from employee lim...

Linux 查詢檔案的第幾行到第幾行命令

cat catalina.out tail n 14000 head n 10000 sort uniq c linux 如何顯示乙個檔案的某幾行 中間幾行 一 從第3000行開始,顯示1000行。即顯示3000 3999行 cat filename tail n 3000 head n 1000 ...