SQLite中中實現 if not exist 類似功能

吉普賽的歌發表於2016-12-23

需要實現:

if not exists(select * from ErrorConfig where Type='RetryWaitSeconds')
begin
     insert into ErrorConfig(Type,Value1)
     values('RetryWaitSeconds','3')
end

只能用:

insert into ErrorConfig(Type,Value1)
select 'RetryWaitSeconds','3'
where not exists(select * from ErrorConfig where Type='RetryWaitSeconds')

因為 SQLite 中不支援SP

相關文章