Skip to content

Instantly share code, notes, and snippets.

@akuchotrani
Created July 31, 2019 07:07
--MS Acess
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;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment