gpt4 book ai didi

sql - 在sql中的select查询中有条件地自动将列值增加1

转载 作者:行者123 更新时间:2023-12-02 06:48:34 26 4
gpt4 key购买 nike

我有如下输入表:

在选择查询中不改变表需要这样的输出:

最佳答案

drop table if exists T;
create table T(id int, nm nvarchar(10))
GO
insert T(id, nm) values (1,'r'),(2,'r'),(3,null),(4,'r')
SELECT * FROM T
GO
-- solution:
select
id, nm,
CASE WHEN nm is not null then count(nm) over (order by id) ELSE NULL END
from T
GO

比较所有解决方案的执行计划(使用 SQL 2017):-)

我的解决方案 21%; LukStorms 解决方案 38%; Ian-Fogelman 解 41%

在您的特定服务器中测试后选择您的解决方案! enter image description here

关于sql - 在sql中的select查询中有条件地自动将列值增加1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50954697/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com