微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Sqlite “insert or replace“ 和 “insert or ignore“ 用法

insert or replace:如果不存在就插入,存在就更新
insert or ignore:如果不存在就插入,存在就忽略
只对UNIQUE约束的字段起作用。

举例:
建表:
CREATE TABLE TEST(id BIGINT, name text, birthday datetime, PRIMARY KEY(id, name));
或者CREATE TABLE TEST (id BIGINT, name text, birthday datetime, UNIQUE(id, name));
插入记录:
insert into test values (10,'aa','2010-01-01 01:01:01');
insert into test values (11,'bb','2011-01-01 01:01:01');
insert into test values (12,'cc','2012-01-01 01:01:01');


依次执行以下语句看结果:
1、insert or replace into test values (10,'jj','2016-01-01 01:01:01');//不存在,插入
id          name        birthday           
----------  ----------  -------------------
10          aa          2010-01-01 01:01:01
11          bb          2011-01-01 01:01:01
12          cc          2012-01-01 01:01:01
10          jj          2016-01-01 01:01:01



2、insert or replace into test values (11,'bb','2016-01-01 01:01:01');//存在,更新
id          name        birthday           
----------  ----------  -------------------
10          aa          2010-01-01 01:01:01
12          cc          2012-01-01 01:01:01
10          jj          2016-01-01 01:01:01
11          bb          2016-01-01 01:01:01


3、insert or ignore into test values (12,'xx','2017-01-01 01:01:01');//不存在,插入
id          name        birthday           
----------  ----------  -------------------
10          aa          2010-01-01 01:01:01
12          cc          2012-01-01 01:01:01
10          jj          2016-01-01 01:01:01
11          bb          2016-01-01 01:01:01
12            xx            2017-01-01 01:01:01


4、insert or ignore into test values (12,'xx','2018-01-01 01:01:01');//存在,忽略
id          name        birthday           
----------  ----------  -------------------
10          aa          2010-01-01 01:01:01
12          cc          2012-01-01 01:01:01
10          jj          2016-01-01 01:01:01
11          bb          2016-01-01 01:01:01
12          xx          2017-01-01 01:01:01

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐