Created
July 31, 2019 07:07
-
-
Save akuchotrani/e387e5bd7644781f85944e88016b42ac to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--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