更新具有不同条件的列值

时间:2016-09-08 11:42:33

标签: sql sql-server

1)我想更新列#34; Order_name"来自表'订单"检查一些条件后(Area,Condition_flag)

示例:

when Area='1' and Condition_flag=C then Order_name= 'Num_Order'+'_'+'Condition_flag' 

2)更新Store_code when Area ='2' and Condition_flag='T'

2 个答案:

答案 0 :(得分:0)

尝试如下:

update Orders 
set  Order_name = Num_Order+'_'+Condition_flag  
where 
     Area='1' and Condition_flag='C' 

答案 1 :(得分:0)

它可以满足您的两个要求

openocd -s C:\OpenOCD\share\openocd\scripts -f ...

但请调整值,如果是整数,则引用不是必需的,否则必须是。