To jest coś, co mnie denerwuje w MSSQL ( rant na moim blogu ). Chciałbym, żeby obsługiwany był MSSQL upsert
.
Kod @ Dillie-O jest dobry w starszych wersjach SQL (+1 głos), ale nadal jest to w zasadzie dwie operacje IO ( exists
a następnie update
or insert
)
W tym poście jest nieco lepszy sposób :
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', ... )
Zmniejsza to do jednej operacji we / wy, jeśli jest to aktualizacja, lub dwóch, jeśli jest wstawiana.
MS Sql2008 wprowadza merge
ze standardu 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, ... )
Teraz to tylko jedna operacja IO, ale okropny kod :-(