简体   繁体   English

如何为每个分区应用 row_number 条件

[英]How to apply row_number for each partition with condition

I want to add a column named PLRowNo which is row number of PL actype in each voucher group.我想添加一个名为 PLRowNo 的列,它是每个凭证组中 PL actype 的行号。 I also want the numbering to start from 1 for every voucher number.我还希望每个凭证号的编号从 1 开始。


This is the expected result这是预期的结果

| id | voucherID | actype | PLRowNo |
|----|-----------| -------|---------|
| 1  | voucher01 | BS     |         |
| 2  | voucher01 | PL     | 1       |
| 3  | voucher01 | BS     |         |
| 4  | voucher01 | PL     | 2       |
| 5  | voucher01 | PL     | 3       |
| 6  | voucher01 | BS     |         |       
| 7  | voucher01 | PL     | 4       |
| 8  | voucher01 | BS     |         |
| 9  | voucher01 | PL     | 5       |
| 10 | voucher02 | PL     |         |
| 11 | voucher02 | PL     | 1       |
| 12 | voucher02 | BS     |         |
| 13 | voucher02 | PL     | 2       |

This is what I have tried:这是我尝试过的:

CREATE TABLE tbl_tmp (
    id int not null primary key,
    voucherID nvarchar(10) not null,
    actype nvarchar(10) not null
);

insert into tbl_tmp(id,voucherID, actype)
values (1,'voucher01', 'BS'),
        (2,'voucher01', 'PL'),
        (3,'voucher01', 'BS'),
        (4,'voucher01', 'PL'),
        (5,'voucher01', 'PL'),
        (6,'voucher01', 'BS'),
        (7,'voucher01', 'PL'),
        (8,'voucher01', 'BS'),
        (9,'voucher01', 'PL'),
        (10,'voucher02', 'PL'),
        (11,'voucher02', 'PL'),
        (12,'voucher02', 'BS'),
        (13,'voucher02', 'PL')

select *,0 as PLRowNo into #tmp from tbl_tmp
declare @id int set @id=0

update #tmp
set @id= case when actype ='PL' then @id+1   else 0 end,
 PLRowNo = case when actype='PL' then @id else 0 end

select * from #tmp

The problem with this query is, it starts counting from 1 (id: 13) if the previous row's type is 'BS'even though in the same voucher partition.这个查询的问题是,如果前一行的类型是“BS”,即使在同一个凭证分区中,它也会从 1 (id: 13) 开始计数。 I want the continuation within one voucher.我希望在一张凭证内继续。


This is the wrong result这是错误的结果

| id | voucherID | actype | PLRowNo |
|----|-----------| -------|---------|
| 1  | voucher01 | BS     |         |
| 2  | voucher01 | PL     | 1       |
| 3  | voucher01 | BS     |         |
| 4  | voucher01 | PL     | 2       |
| 5  | voucher01 | PL     | 3       |
| 6  | voucher01 | BS     |         |       
| 7  | voucher01 | PL     | 4       |
| 8  | voucher01 | BS     |         |
| 9  | voucher01 | PL     | 5       |
| 10 | voucher02 | PL     |         |
| 11 | voucher02 | PL     | 1       |
| 12 | voucher02 | BS     |         |
| 13 | voucher02 | PL     | 1       |

Please try this.请试试这个。

select *,    
CASE
    WHEN actype='PL' THEN CAST((select count(*) from tbl_tmp as t where actype='PL' and t.id<=tbl_tmp.id and  t.voucherID=tbl_tmp.voucherID )as VarChar(10))
    ELSE ''
END
as PLRowNo     
from tbl_tmp

You don't need temp tables or quirky updates , you can just use ROW_NUMBER你不需要临时表或古怪的更新,你可以使用ROW_NUMBER

SELECT *,
  PLRow_no = CASE WHEN actype = 'PL' THEN
    ROW_NUMBER() OVER (PARTITION BY actype, voucherID ORDER BY id) 
    END
FROM tbl_tmp
ORDER BY id;

db<>fiddle db<>小提琴

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM