sqlite不存在记录则插入数据

前端之家收集整理的这篇文章主要介绍了sqlite不存在记录则插入数据前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

网址:http://www.jb51.net/article/49156.htm


利用not exists语句

insert into deviceentry (customerId,allNumber) select 'c','d' 
where not exists (select * from deviceentry);
原文链接:https://www.f2er.com/sqlite/198269.html

猜你在找的Sqlite相关文章