添加唯一索引。 SQLite3
我需要向现有表添加唯一字段索引。我做了这一行:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
另外,请阅读官方手册:
http://www.sqlite.org/lang_createindex.html
Also, read the official manual:
http://www.sqlite.org/lang_createindex.html