我现在正在学习 SQL,并且发现了一些不同的更新和设置表的方法。
对于这个例子,我想知道这样做的“最正确方法”是什么?
UPDATE student
SET test1 = 7, test2 = 9
where stuid = 999
或者
UPDATE student
SET test1 = 7
where stuid = 999
UPDATE student
SET test2 = 9
where stuid = 999
谢谢。