How to drop unique in MySQL?

前端 未结 10 752
[愿得一人]
[愿得一人] 2020-12-07 11:20
Create Table: CREATE TABLE `fuinfo` (
  `fid` int(10) unsigned NOT NULL,
  `name` varchar(40) NOT NULL,
  `email` varchar(128) NOT NULL,
  UNIQUE KEY `email` (`email         


        
10条回答
  •  失恋的感觉
    2020-12-07 11:41

    DROP INDEX column_name ON table_name

    Select the database and query form the sql tab.This removes the index of the particular column. It worked for me in PHP MyADMIN

提交回复
热议问题