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;

Continue reading SQL DROP INDEX Keyword