我想用多个值更新表中的单个列。
Update Table_cust
Set Cust_Value=('1','2','3')
where cust_id in ('ABC','XYZ')
当我运行它时,我收到一个错误,说缺少右括号,现在这是因为它希望我一次更新一个值,而我不能。
我想用多个值更新表中的单个列。
Update Table_cust
Set Cust_Value=('1','2','3')
where cust_id in ('ABC','XYZ')
当我运行它时,我收到一个错误,说缺少右括号,现在这是因为它希望我一次更新一个值,而我不能。