bugl
bugl
HomeLearnPatternsPathsSearchPremium
HomeLearnPatternsPaths

Loading lesson path

Learn/SQL/SQL References
SQL•SQL References

SQL DROP INDEX Keyword

Drop Index

The DROP INDEX command is used to delete an index in a table.

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
;

Previous

SQL DROP DEFAULT Keyword

Next

SQL DROP TABLE and TRUNCATE TABLE Keywords