update table1 set field1 = field1 + '123456' where field2 = '12'
对不起,我忘了提到我在声明中更新了多个字段.
在field1为null的情况下,这样的东西可能会有所帮助.
update table1 set field1 = ISNULL(field1,'') + '123456' where field2 = '12'