sqlite3 – 当PRAGMA foreign_keys = ON时,是否允许在sqlite中使用null外键?

sqlite3 – 当PRAGMA foreign_keys = ON时,是否允许在sqlite中使用null外键?,第1张

概述根据 this,允许使用null外键,除非并且直到我们向模式添加适当的“NOT NULL”约束. 但我看到了一些不同的行为, sqlite> PRAGMA Foreign_keys;1sqlite> create table proc (pid integer, name text, ppid integer, foreign key (ppid) references proc (id) 根据 this,允许使用null外键,除非并且直到我们向模式添加适当的“NOT NulL”约束.

但我看到了一些不同的行为,

sqlite> PRAGMA Foreign_keys;1sqlite> create table proc (pID integer,name text,ppID integer,foreign key (ppID)  references proc (ID));sqlite> .schema procCREATE table proc (pID integer,foreign key (ppID) references   proc (ID));sqlite> insert into proc (pID,name,ppID) values (0,"init",null);Error: foreign key mismatchsqlite> PRAGMA Foreign_keys=OFF;sqlite> PRAGMA Foreign_keys;0sqlite> insert into proc (pID,null)sqlite> select * from proc;0|init|

当PRAGMA foreign_keys = ON时,如何在sqlite中允许空外键?或者根本不可能?

解决方法 > ID列名为pID,而不是ID. >父键列必须具有UNIQUE或PRIMARY KEY约束. 总结

以上是内存溢出为你收集整理的sqlite3 – 当PRAGMA foreign_keys = ON时,是否允许在sqlite中使用null外键?全部内容,希望文章能够帮你解决sqlite3 – 当PRAGMA foreign_keys = ON时,是否允许在sqlite中使用null外键?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1155030.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-01
下一篇 2022-06-01

发表评论

登录后才能评论

评论列表(0条)

保存