Command
CREATE INDEX indexname ON tablename (columnname);
Explanation
Creates a new index on the specified column.
Examples
Create index on email column
CREATE INDEX idx_users_email ON users (email);
CREATE INDEX indexname ON tablename (columnname);
Creates a new index on the specified column.
Create index on email column
CREATE INDEX idx_users_email ON users (email);