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.
关于如何从 MySQL 中删除键的唯一性有很多答案,但没有关于如何添加它的答案。
有什么办法可以将 KEY 变成 UNIQUE KEY?
ALTER TABLE sales.order ADD UNIQUE(order_ref);
从http://dev.mysql.com/doc/refman/5.1/en/alter-table.html窃取的示例
使用 phpmyadmin 更直观的方式,在浏览表格时单击结构。在页面底部有“索引”部分,您可以使用编辑按钮管理键和类型。