MySQL CREATE INDEX Statement (original) (raw)

Last Updated : 23 Jul, 2025

MySQL is an open-source **relational database management system that uses Structured Query Language (**SQL) to manage and manipulate data. The CREATE INDEX statement is an important tool for enhancing database performance. By creating indexes, MySQL can quickly locate and retrieve relevant data, reducing the need for full table scans and minimizing response times.

In this article, we will explore how to use the CREATE INDEX statement with practical examples to optimize query performance and improve the efficiency of data retrieval operations.

MySQL CREATE INDEX Statement

The MySQL **CREATE INDEX statement is a DDL (Data Definition Language) statement used to create **indexes on tables. It allows developers to **optimize query performance by specifying which columns should be indexed. The index is a **data structure that provides a quick lookup mechanism for faster data retrieval.

Need for Indexing in MySQL

Creating an Index in MySQL

Indexes can be created at the time of table creation or added later using the CREATE INDEX statement. This helps optimize query performance by allowing MySQL to quickly locate and retrieve data.

Creating a Table with an Index

Indexes can be specified during table creation. The following example creates a table named '**table _index' with an index on columns '**column 2' and '**column 3'.

CREATE TABLE p_index (
column1 INT PRIMARY KEY,
column2 INT NOT NULL,
column3 INT NOT NULL,
column4 VARCHAR(20),
INDEX (column2, column3)
);

Adding an Index to an Existing Table

If you want to add an index to an existing table, you can use the **CREATE INDEX**statement. The syntax for adding an index is:

CREATE INDEX index_name
ON table_name (column_names);

Example: Adding an Index to a Column

To add a new index on the column4 column in the **table ** _index**table, you can use the following SQL statement:

CREATE INDEX index_1
ON table_index (column4);

Example of MySQL CREATE INDEX

By this example, we will try to understand, how **CREATE INDEX helps in quickly retrieve the data.

we will create index on this **products table:

products_table

products table

Before creating a Index, we will **analyze the query execution plan for a query filtering by the category column. This will show a full table scan, that indicate that MySQL is examining all rows in the table.

EXPLAIN SELECT * FROM products WHERE category = 'Electronics';

before_index

Analyzing Query Before Creating of Index

Now, we will create a index on a **category column by using this query:

CREATE INDEX idx_category ON products (category);

creating_index

Creating Index

**After creating a Index, we will **analyze the query execution plan for a query filtering by the category column. The output showing that the query is using the **idx_category index, resulting in a more efficient query execution plan.

EXPLAIN SELECT * FROM products WHERE category = 'Electronics';

after_index

Analyzing Query After Creating Index

To **Drop index, we will use this query:

DROP INDEX idx_category ON products;

drop_index

Drop Index

Conclusion

In conclusion, MySQL **CREATE INDEX is tool for **optimizing database performance by improving query speed and efficiency. By selecting and defining **indexes on the appropriate column you can improve the efficiency of data retrieval operations. Indexing allows MySQL to quickly **locate and **retrieve relevant data by reducing the need for full table scans and minimizing response times CREATE INDEX is a DDL (Data Definition Language) statement that is used to create indexes on tables.