SQL DROP INDEX 关键字
DROP INDEX
The DROP INDEX
command is used to delete an index in a table. (DROP INDEX 命令用于删除表中的索引。)
MS Access
DROP INDEX index_name ON table_name;
SQL Server
DROP INDEX table_name.index_name;
DB2/Oracle
DROP INDEX index_name;
MySQL
ALTER TABLE table_name
DROP INDEX index_name;