请澄清基于 SQLite 中的冲突子句的表与查询?

发布于 2024-10-22 19:17:13 字数 222 浏览 2 评论 0原文

我一直在阅读有关 SQLite 冲突解决的内容,但我对某一方面并不完全确定。

如果我有 PRIMARY KEY ON CONFLICT IGNORE 作为表的一部分,我是否仍然需要在插入查询上放置 INSERT OR IGNORE 以使其忽略冲突,或者它会选择来自表定义?

我读到的一些内容提到了表定义仅影响整个表的操作,但我不确定这是否有意义。

I've been reading about SQLite conflict resolution and I'm not totally sure about one aspect.

If I have
PRIMARY KEY ON CONFLICT IGNORE as part of the table, do I still need to put INSERT OR IGNORE on an Insert query to have it ignore conflicts, or will it pick up on that from the table definition?

Something I read said something about table definitions only affecting operations on the whole table, but I am not sure that makes sense.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

魔法少女 2024-10-29 19:17:13

在提问之前您是否考虑过进行测试?

sqlite> create table test (id integer primary key on conflict ignore);
sqlite> insert into test values (1);
sqlite> insert into test values (1);
sqlite> insert into test values (1);
sqlite> insert into test values (1);
sqlite> select * from test;
1

sqlite> drop table test;
sqlite> create table test (id integer primary key);
sqlite> insert into test values (1);
sqlite> insert into test values (1);
Error: PRIMARY KEY must be unique
sqlite> insert or ignore into test values (1);
sqlite> insert or ignore into test values (1);
sqlite> select * from test;
1

Did you consider testing that before asking the question?

sqlite> create table test (id integer primary key on conflict ignore);
sqlite> insert into test values (1);
sqlite> insert into test values (1);
sqlite> insert into test values (1);
sqlite> insert into test values (1);
sqlite> select * from test;
1

sqlite> drop table test;
sqlite> create table test (id integer primary key);
sqlite> insert into test values (1);
sqlite> insert into test values (1);
Error: PRIMARY KEY must be unique
sqlite> insert or ignore into test values (1);
sqlite> insert or ignore into test values (1);
sqlite> select * from test;
1
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文