» MySQL Tutorial » Creating and Removing Index Creating and Removing Index
Creating Indexes
Database indexes help to speed the retrieval of data from MySQL database server faster. When retrieving the data, MySQL first check whether the indexes exists; If yes it will use index to select exact physical corresponding rows without scanning the whole table.
View Complete Post