MariaDB Tutorial MariaDB Advanced MariaDB Database Account Management MariaDB References

MariaDB DROP INDEX Keyword



The MariaDB DROP INDEX keyword is used to delete a index on a table. Indexes are useful to retrieve data from the database more quickly and speeds up the search queries. Indexes are not visible to the end users. Along with this, updating a table with indexes takes more time as compared to a table without any indexes because indexes are updated. Therefore it is advised to create indexes only on frequently searched columns.

The INSERT and UPDATE statements take more time on tables having indexes, whereas the SELECT statements become fast on those tables. The reason is that while performing insert or update operation, the database update the indexes as well.

MariaDB DROP INDEX

The MariaDB DROP INDEX statement is used to delete a index on a table.

Syntax

The syntax for using DROP INDEX statement in MariaDB is given below:

DROP INDEX index_name ON table_name;

OR

ALTER TABLE table_name
DROP INDEX index_name;

MariaDB DROP INDEX Example

Consider a table called Employee which contains an index named idx_name. To drop this index, the following statement can be used:

DROP INDEX idx_name ON Employee;

OR
 
ALTER TABLE Employee
DROP INDEX idx_name;

❮ MariaDB Keywords