sqlite3.OperationalError:靠近“REFERENCES”:语法错误 - 外键创建

发布于 2024-10-27 12:59:17 字数 536 浏览 1 评论 0原文

我正在尝试创建一个外键。检查手册 12 我写了这个:

db.execute("create table if not exists table1 (id integer PRIMARY KEY, somedata integer)")
db.execute("create table if not exists table2 (names text, REFERENCES maintable (id)")

并得到了这个:

sqlite3.OperationalError:“REFERENCES”附近:语法错误

我错过了什么?我怎样才能创建前键? 谢谢。

sqlite_版本是3.7.4

I'm trying to create a foreing key. After checking the manuals 1 and 2 out i wrote this:

db.execute("create table if not exists table1 (id integer PRIMARY KEY, somedata integer)")
db.execute("create table if not exists table2 (names text, REFERENCES maintable (id)")

and got this:

sqlite3.OperationalError: near "REFERENCES": syntax error

What did i miss? How can i create the foreing key?
Thank you.

sqlite_version is 3.7.4

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

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

发布评论

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

评论(1

网白 2024-11-03 12:59:17

你的第二个ligne是错误的,应该

db.execute("create table if not exists table2 (names text,my_id integer, FOREIGN KEY(my_id) REFERENCES maintable (id))")

http://www.sqlite.org/foreignkeys中所述。 html#fk_basics

your second ligne is wrong it should be

db.execute("create table if not exists table2 (names text,my_id integer, FOREIGN KEY(my_id) REFERENCES maintable (id))")

as explained in http://www.sqlite.org/foreignkeys.html#fk_basics

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文