Questo è qualcosa che mi infastidisce di MSSQL (rant on il mio blog
). Vorrei che MSSQL supportasse upsert
.
Il codice di @Dillie-O è un buon modo nelle versioni SQL precedenti (+1 voto), ma è ancora fondamentalmente due operazioni IO (il exists
e poi l'update
o insert
)
C'è un modo leggermente migliore su questo post , in pratica:
--try an update
update tablename
set field1 = 'new value',
field2 = 'different value',
...
where idfield = 7
--insert if failed
if @@rowcount = 0 and @@error = 0
insert into tablename
( idfield, field1, field2, ... )
values ( 7, 'value one', 'another value', ... )
Questo lo riduce a un'operazione di I/O se si tratta di un aggiornamento o due se si tratta di un inserimento.
MS Sql2008 introduce merge
dallo standard 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, ... )
Ora è davvero solo un'operazione IO, ma codice terribile :-(