Curriculum
Course: SQL
Login

Curriculum

SQL

SQL References

0/80

MySQL Functions

0/139

SQL Server Functions

0/84

SQL Quick Ref

0/1
Text lesson

DROP INDEX

DROP INDEX

The DROP INDEX command is utilized to remove an index from 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