bugl
bugl
HomeLearnPatternsSearch
HomeLearnPatternsSearch

Loading lesson path

Learn/SQL/SQL References
SQL•SQL References

SQL DROP INDEX Keyword

Concept visual

SQL DROP INDEX Keyword

Pointer walk
two pointers
leftright102132436485116
left=0
right=6
1
3

Start at both ends

DROP INDEX Keyword

Previous

❮ SQL Keywords

Next

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 Keywords

Next

Previous

SQL DROP DEFAULT Keyword

Next

SQL DROP TABLE and TRUNCATE TABLE Keywords