Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个具有唯一约束的表。放弃该约束的正确方法是什么?
特定索引没有名称。它只有一个列名。
而且我想保留该列....只需删除唯一性约束即可。
谢谢!
如果您没有在 DDL 中为索引指定名称,MySQL 将选择一个名称。执行以下语句:
SHOW CREATE TABLE foobar\G
有几种方法可以取消约束,例如:
ALTER TABLE foobar DROP INDEX index_name;