0

我想用多个值更新表中的单个列。

Update Table_cust
Set Cust_Value=('1','2','3')
where cust_id in ('ABC','XYZ')

当我运行它时,我收到一个错误,说缺少右括号,现在这是因为它希望我一次更新一个值,而我不能。

4

2 回答 2

1

这是你想要的吗?

Update Table_cust
Set Cust_Value='1,2,3'
where cust_id in ('ABC','XYZ')
于 2013-06-19T08:51:55.130 回答
0

这应该有效:

Update Table_cust
Set Cust_Value='1,2,3'
where cust_id in ('ABC','XYZ')
于 2013-06-19T08:52:35.157 回答