MySQL INDEXES
The MySQL indexes are used to speed up search operations on tables. The indexes are data structure that helps to improve select and search statements.
CREATE INDEX Statement
The CREATE INDEX statement is used for creating new indexes in the MySQL database
Syntax:
Example:
Create an index named idx_empname for column emp_name on Employee tables
DROP INDEX Statement
DROP INDEX statement is used to delete an existing index from the database.
To remove index idx_empname run the following command on the database.
0 Comments
CAN FEEDBACK
Emoji