Index databases
In general, the fastest way to access data from a database is to use an index. Indexes increase the efficiency of finding a specific piece of data. Indexing provides an efficient and fast way to identify the data (rows) in a table.
Recommendations:
*
*
*
*
Index columns involved in ORDER BY and GROUP BY.
*
*
*
When you use indexing, keep the following guidelines in mind:
*
Add indexes only when absolutely necessary. Indexes significantly impact INSERT, UPDATE, and DELETE performance, and they require storage.
*
*
*