添加唯一索引。 SQLite3

发布于 2024-12-11 06:58:19 字数 228 浏览 0 评论 0原文

我需要向现有表添加唯一字段索引。我做了这一行:

ALTER TABLE auth_user ADD UNIQUE INDEX (email);

表和字段已经存在。 错误是:

查询错误:“UNIQUE”附近:语法错误无法执行语句

我错过了什么?它对 SQLite3 有什么具体要求吗?

I need to add a unique field index to an existing table. I made this row:

ALTER TABLE auth_user ADD UNIQUE INDEX (email);

The table and the field are already exist.
The error is:

Query Error: near "UNIQUE": syntax error Unable to execute statement

What am I missed? Did it have any specific requirements for SQLite3?

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

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

发布评论

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

评论(1

把回忆走一遍 2024-12-18 06:58:19
CREATE UNIQUE INDEX IF NOT EXISTS MyUniqueIndexName ON auth_user (email)

另外,请阅读官方手册:

http://www.sqlite.org/lang_createindex.html

CREATE UNIQUE INDEX IF NOT EXISTS MyUniqueIndexName ON auth_user (email)

Also, read the official manual:

http://www.sqlite.org/lang_createindex.html

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