Sqlite如果插入或更新数据库

前端之家收集整理的这篇文章主要介绍了Sqlite如果插入或更新数据库前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我们经常会用到如果数据库存在则更新,如果不存在则新增 
 

sql一般写为

if exists(select * from table where tableid=1)
insert into table ...
else
update table ....

但是sqlite里没有if exists这种写法,它用的是一种更简单的语句

insert or replace into Forum(forumid,forumname,typeid,forumurl) values(1,'db',2,'http://www.db.com')

原文链接:https://www.f2er.com/sqlite/200782.html

猜你在找的Sqlite相关文章