Combining two UPDATE statement with one SET statement with WHERE clause and one SET without

StackOverflow https://stackoverflow.com/questions/23672068

  •  23-07-2023
  •  | 
  •  

Is it possible to combine this query into one UPDATE statement?

UPDATE [dbo].[MyTable]
SET Column1 = Column2

UPDATE [dbo].[MyTable]
SET Column3 = 1
WHERE Column1 IS NOT NULL

Thanks.

有帮助吗?

解决方案

UPDATE [DBO].[MyTable]
SET Column1 = Column2,
    Column3 = (
  CASE
    WHEN Column1 IS NOT NULL
    THEN 1
    ELSE Column3
  END)

其他提示

This should work for you:

UPDATE [dbo].[MyTable]
SET Column1 = Column2
    ,Column3 = 
    case 
         when Column1 IS NOT NULL THEN 1
         else Column3 
     end
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top