私は現在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
ありがとう。