Clustered Index
In InnoDB the PRIMARY KEY is the clustered index: row data is stored in PK order. Secondary indexes store the PK to find the row. That is why a short integer PK is a common recommendation.
MySQL does not let you pick a random extra clustered index like some SQL Server setups. The PK is the cluster.
Trap — calling every INDEX ‘clustered’. Only the PK (InnoDB) is.
On the example next to this theory: Clustered Index — keys and constraints protect data integrity; indexes speed lookups.
Exam tip
InnoDB: PK = clustered index. Secondary indexes point at the PK.