이것은 MSSQL에 대해 나를 괴롭히는 것입니다 ( 내 블로그에서 폭언 ). MSSQL이 지원되기를 바랍니다.upsert
.
@ Dillie-O의 코드는 이전 SQL 버전 (+1 투표)에서 좋은 방법이지만 여전히 기본적으로 두 개의 IO 작업 ( exists
다음 update
또는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', ... )
이렇게하면 업데이트 인 경우 하나의 IO 작업으로, 삽입 인 경우 두 번으로 줄어 듭니다.
MS Sql2008 merge
은 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, ... )
이제는 실제로 하나의 IO 작업이지만 끔찍한 코드입니다 :-(