多列 UNIQUE 索引也可以像我們從表中刪除 UNIQUE 約束一樣被刪除。
在此範例中,我們使用下列查詢已刪除表格「employee」上的多列UNIQUE 索引-
mysql> DROP index id_fname_lname on employee; Query OK, 0 rows affected (0.30 sec) Records: 0 Duplicates: 0 Warnings: 0
從下列查詢的結果集中可以觀察到UNIQUE 索引的刪除-
mysql> show index from employee; Empty set (0.00 sec) mysql> describe employee; +------------+-------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +------------+-------------+------+-----+---------+-------+ | empid | int(11) | YES | | NULL | | | first_name | varchar(20) | YES | | NULL | | | last_name | varchar(20) | YES | | NULL | | +------------+-------------+------+-----+---------+-------+ 3 rows in set (0.08 sec)
以上是我們如何刪除多列UNIQUE索引?的詳細內容。更多資訊請關注PHP中文網其他相關文章!