这个 SQL 的最佳方法是什么?
一种)
update tableName set
FieldA = (if FieldA = 1301 then null else FieldA endif),
FieldB = (if FieldB = 1301 then null else FieldB endif)
where Id = 707;
或者
二)
update tableName set FieldA = null where Id= 707 and FieldA = 1301;
update tableName set FieldB = null where Id= 707 and FieldB = 1301;
在模型“A”中,我只有一个可以工作并解决问题的 SQL,而模型“B”中有两个 SQL,它们与“A”模型做同样的事情,但更具可读性。
最适合使用的模型是什么?