Indexes
What are Indexes
Types of Indexes
ALTER TABLE $TABEL_NAME ADD PRIMARY KEY (column_name);CREATE UNIQUE INDEX index_name ON $TABEL_NAME (column_name);CREATE INDEX index_name ON $TABEL_NAME (column1, column2);CREATE INDEX index_name ON $TABEL_NAME (column_name(10));CREATE FULLTEXT INDEX index_name ON $TABEL_NAME (column_name);Creating and Dropping Indexes
Performance Considerations
Views
Stored Procedures and Functions
Last updated