gpt4 book ai didi

使用 group by 进行 SQL Server 更新

转载 作者:行者123 更新时间:2023-12-03 23:14:35 25 4
gpt4 key购买 nike

 insert into tableA (column1) 
select min(tableC.column1)
from tableB
inner join tableC on (tableC.coumn2 = tableB.column1
and tableB.column2 = tableA.column2)
group by tableA.column2

我将如何根据标准将上述内容更改为使用 group by 的更新而不是使用 group by 插入 tableB.column2 = tableA.column2 ?

请注意,我正在使用 SQL SERVER 2008.

最佳答案

  Update A set Column1 = minC    
from (select Ab.Column2, min(C.Column1) as minC
from A Ab
inner join B on Ab.Column2 = B.Column2
inner join C on C.column2 = B.Column2 --No need to add again the A.col2 = B.col2
group by Ab.Column2) Grouped where A.Column2 = Grouped.Column2

这是你想要的吗?
这将为每个 columnA 获得 C.Column1最小值,并将在 A.Column1 中更新它(这是您之前插入的位置),基于条件 A.Column2 = Grouped.Column2 .

这是一个 SQL-Fiddle Demo

关于使用 group by 进行 SQL Server 更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12343437/

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