如何在sqlite中使用ROW_NUMBER

时间:2013-05-30 23:35:59

标签: sqlite android-sqlite row-number

以下是我的查询。

select * from data where value = "yes";

我的ID是自动增量,下面是给定查询的结果。

id || value 
1  ||   yes
3  ||   yes
4  ||   yes
6  ||   yes
9  ||   yes

如何在sqlite中使用ROW_NUMBER?这样我就可以得到下面给出的结果。

NoId || value 
1    ||   yes
2    ||   yes
3    ||   yes
4    ||   yes
5    ||   yes

ROW_NUMBER作为NoId。

4 个答案:

答案 0 :(得分:22)

尝试此查询

select id, value, (select count(*) from tbl b  where a.id >= b.id) as cnt
from tbl a

FIDDLE

| id | value | cnt |
--------------------
|  1 |   yes |   1 |
|  3 |   yes |   2 |
|  4 |   yes |   3 |
|  6 |   yes |   4 |
|  9 |   yes |   5 |

答案 1 :(得分:9)

SQLite Release 3.25.0将添加对窗口功能的支持

  

2018-09-15(3.25.0)

     
      
  1. 添加对窗口功能的支持
  2.   

Window Functions

  

窗口函数是一种特殊的SQL函数,其中输入值取自SELECT语句的结果集中的一个或多个行的“窗口”。

     

SQLite支持以下11种内置窗口功能:

     

row_number()

     

当前分区内的行号。行以窗口定义中ORDER BY子句定义的顺序从1开始编号,否则以任意顺序编号。

因此您的查询可以重写为:

select *, ROW_NUMBER() OVER(ORDER BY Id) AS NoId
from data 
where value = "yes";

db-fiddle.com demo

答案 2 :(得分:2)

我用fiddleanswer修补了一些,并且得到了预期的结果

select id, value , 
       (select count(*) from data b where a.id >= b.id and b.value='yes') as cnt 
from data a where  a.value='yes';

result
1|yes|1
3|yes|2
4|yes|3
6|yes|4
9|yes|5

答案 3 :(得分:2)

更新:sqlite3版本3.25现在支持窗口功能,包括:

row_number()超过(按ID排序)

SQLITE3 Documentation