SQL中的索引 | 聚集索引与非聚集索引
原文英文,约500词,阅读约需2分钟。发表于: 。Indexing in SQL What are Indexes in SQL? Indexes in SQL are special data structures designed to optimize the speed of data retrieval operations from database tables. Rather than scanning the...
SQL中的索引是优化数据检索速度的特殊结构,主要分为聚集索引和非聚集索引。聚集索引决定数据的物理存储顺序,表中只能有一个;非聚集索引则是独立结构,可以有多个。聚集索引适合按键顺序检索,非聚集索引优化其他列的查询。