2021
01-03
01-03
SQLite 实现if not exist 类似功能的操作
需要实现:ifnotexists(select*fromErrorConfigwhereType='RetryWaitSeconds')begininsertintoErrorConfig(Type,Value1)values('RetryWaitSeconds','3')end只能用:insertintoErrorConfig(Type,Value1)select'RetryWaitSeconds','3'wherenotexists(select*fromErrorConfigwhereType='RetryWaitSeconds')因为SQLite中不支持SP补充:sqlite3中NOTIN不好用的问题在用sqlite3熟悉SQL的时候遇到了一个百思不...
继续阅读 >