sqlserver中,如何往表格中某一行某几列已有数据的情况下继续往这行的其它列插入数据?

2024-12-01 12:40:24
推荐回答(2个)
回答1:

update 表名 set seastorwest='xxxx',slouhao='yyyy' where smima='201219630201' and banjihao='2012196302'

我这是只改了seastorwest字段和slouhao字段值,你要改其他的就继续逗号分隔往后加,xxxx和yyyy你换成你想修改的值

回答2:

update 表名 set 字段名='值' where id='',这样就可以啊