MySQL中的ROWNUM的實現

2021-07-03 05:47:38 字數 2804 閱讀 3397

mysql 幾乎模擬了 oracle,sql server等商業資料庫的大部分功能,函式。但很可惜,到目前的版本(5.1.33)為止,仍沒有實現rownum這個功能。

下面介紹幾種具體的實現方法.

建立實驗環境如下

mysql> create table tbl (

->  id      int primary key,

->  col     int

-> );

query ok, 0 rows affected (0.08 sec)

mysql> insert into tbl values

-> (1,26),

-> (2,46),

-> (3,35),

-> (4,68),

-> (5,93),

-> (6,92);

query ok, 6 rows affected (0.05 sec)

records: 6  duplicates: 0  warnings: 0

mysql>

mysql> select * from tbl order by col;

+----+------+

| id | col  |

+----+------+

|  1 |   26 |

|  3 |   35 |

|  2 |   46 |

|  4 |   68 |

|  6 |   92 |

|  5 |   93 |

+----+------+

6 rows in set (0.00 sec)

1. 直接在程式中實現;

這應該算是效率最高的一種,也極為方便。直接在你的開發程式中(php/asp/c/...)等中,直接初始化乙個變數nrownum=0,然後在while 記錄集時,nrownum++; 然後輸出即可。

2. 使用mysql變數;在某些情況下,無法通過修改程式來實現時,可以考慮這種方法。

缺點,@x 變數是 connection 級的,再次查詢的時候需要初始化。一般來說php等b/s應用沒有這個問題。但c/s如果connection乙隻保持則要考慮 set @x=0

mysql> select @x:=ifnull(@x,0)+1 as rownum,id,col

-> from tbl

-> order by col;

+--------+----+------+

| rownum | id | col  |

+--------+----+------+

|      1 |  1 |   26 |

|      1 |  3 |   35 |

|      1 |  2 |   46 |

|      1 |  4 |   68 |

|      1 |  6 |   92 |

|      1 |  5 |   93 |

+--------+----+------+

6 rows in set (0.00 sec)

3. 使用聯接查詢(笛卡爾積)

缺點,顯然效率會差一些。

利用表的自聯接,**如下,你可以直接試一下 select a.*,b.* from tbl a,tbl b where a.col>=b.col 以理解這個方法原理。

mysql> select a.id,a.col,count(*) as rownum

-> from tbl a,tbl b

-> where a.col>=b.col

-> group by a.id,a.col;

+----+------+--------+

| id | col  | rownum |

+----+------+--------+

|  1 |   26 |      1 |

|  2 |   46 |      3 |

|  3 |   35 |      2 |

|  4 |   68 |      4 |

|  5 |   93 |      6 |

|  6 |   92 |      5 |

+----+------+--------+

6 rows in set (0.00 sec)

4. 子查詢

缺點,和聯接查詢一樣,具體的效率要看索引的配置和mysql的優化結果。

mysql> select a.*,

->  (select count(*) from tbl where col<=a.col) as rownum

-> from tbl a;

+----+------+--------+

| id | col  | rownum |

+----+------+--------+

|  1 |   26 |      1 |

|  2 |   46 |      3 |

|  3 |   35 |      2 |

|  4 |   68 |      4 |

|  5 |   93 |      6 |

|  6 |   92 |      5 |

+----+------+--------+

6 rows in set (0.06 sec)

做為一款開源的資料庫系統,mysql無疑是乙個不做的產品。它的更新速度,文件維護都不遜於幾大商業資料庫產品。估計在下乙個版本中,我們可以看到由mysql自身實現的rownum。

from:

Mysql的Rownum使用示例

1,顯示當前查詢結果的行號 select rownum rownum 1 as rownum,e.from select rownum 0 r,employee e 顯示結果如下 2,按部門分組並按年齡降序排序並顯示排名 select if dept e.deptno,rank rank 1,ran...

Oracle中rownum的用法

1 查詢第幾行的記錄 select sal from emp where rownum 1 查詢得到第一行記錄 select sal from emp where rownum 5 不可以查詢到第五行記錄,因為 rownum 總是從1 開始查詢的,故這種方式不可以直接得到第幾行的記錄。若想得到第五行...

Oracle中rownum的用法

1 查詢第幾行的記錄 select sal from emp where rownum 1 查詢得到第一行記錄 select sal from emp where rownum 5 不可以查詢到第五行記錄,因為rownum 總是從1開始查詢的,故這種方式不可以直接得到第幾行的記錄。若想得到第五行記錄...