📜  mysql表中的索引有什么用 - SQL代码示例

📅  最后修改于: 2022-03-11 15:04:51.109000             🧑  作者: Mango

代码示例1
Indexes are used to find rows with specific column values quickly. Without an index, MySQL must begin with the first row and then read through the entire table to find the relevant rows. The larger the table, the more this costs.