What is an index?

后端 未结 7 1936
無奈伤痛
無奈伤痛 2020-12-15 06:42

What is an index in MySQL ????

7条回答
  •  独厮守ぢ
    2020-12-15 07:15

    Indexes are data structures used to optimise queries. They are conceptually very similar to the index at the back of a book. They cost some space and time to maintain, just as a book index would have to be redone if you decided to add a new chapter. But they often speed up queries enormously (up to thousands or even millions of times faster than without).

提交回复
热议问题