これはMSSQLについて私を悩ませるものです(私のブログで暴言を吐きます)。MSSQLがサポートされてupsert
いることを望みます。
@ Dillie-Oのコードは古いSQLバージョン(+1投票)では良い方法ですが、それでも基本的に2つのIO操作(the exists
、次にupdate
or insert
)です。
この投稿には、基本的に少し良い方法があります。
update tablename
set field1 = 'new value',
field2 = 'different value',
...
where idfield = 7
if @@rowcount = 0 and @@error = 0
insert into tablename
( idfield, field1, field2, ... )
values ( 7, 'value one', 'another value', ... )
これにより、更新の場合は1つのIO操作に、挿入の場合は2つのIO操作に削減されます。
MS Sql2008merge
は、SQL:2003標準から次のことを導入しています。
merge tablename as target
using (values ('new value', 'different value'))
as source (field1, field2)
on target.idfield = 7
when matched then
update
set field1 = source.field1,
field2 = source.field2,
...
when not matched then
insert ( idfield, field1, field2, ... )
values ( 7, source.field1, source.field2, ... )
今では実際には1つのIO操作ですが、ひどいコードです:-(