SQL 用update语句一次更新多个字段应该怎么写

2024年11月15日 14:52
有4个网友回答
网友(1):

update table set column1 = 'a', column2='b', column3='c' where id = '';

网友(2):

update 表名

set 栏位1='' , 栏位2='',...
where ...

网友(3):

给你举个例子吧
UPDATE Person SET Address = 'Zhongshan 23', City = 'Nanjing'
WHERE LastName = 'Wilson'

网友(4):

update 表 set 字段1=“”,字段2="XXX",字段3=AAA;