Performance
A number of points must be examined if we want to improve our structure's efficiency in terms of access speed or disk space used.
Indexes
Adding indexes on columns that are used in a WHERE clause is a common way of speeding up the queries. Let's say that we intend to find all vehicles for a specific brand. The vehicle table has a brand_id column and we want to create an index on this column. In this case, the index won't be unique because each brand is represented by many vehicles.
Using phpMyAdmin, there are two ways to create an index. First, if the index applies to a single column, we can open the Structure page for a table and click the index (flash) icon on the same line as the brand_id column:
This generates the following statement: ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access