SQLite中中实现 if not exist 类似功能

前端之家收集整理的这篇文章主要介绍了SQLite中中实现 if not exist 类似功能前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

需要实现:

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 原文链接:https://www.f2er.com/sqlite/198611.html

猜你在找的Sqlite相关文章