Database: index

The whole point of having an index is to speed up search queries by essentially cutting down the number of records/rows in a table that need to be examined.

an index is a data structure (most commonly a B- tree) that stores the values for a specific column in a table. An index is created on a column of atable. So, the key points to remember are that an index consists of column values from one table, and that those values are stored in a data structure. The index is a data structure

Database: index

上一篇:加密版Sqlite(集成CppSqlite)


下一篇:Java多线程系列--“JUC集合”09之 LinkedBlockingDeque