if-then在SQL Server中

时间:2011-08-11 17:28:28

标签: sql sql-server

我需要在SQL Server中创建一个基本上应该说

的命令
If table1.columnx = 1
then update table2 set comumnx = 1

应该很简单,但我无法提出解决方案。

1 个答案:

答案 0 :(得分:11)

update t2
set columnx = 1
from table1 t1 
inner join table2 t2
on t1.id = t2.id
where t1.columnx = 1