SQL 索引创建
时间:2021-07-01 10:21:17
帮助过:5人阅读
UNIQUE CLUSTERED INDEX IX_F_Log
ON F_Log(userId,customerId,shopId)
--唯一 聚集索引
CREATE NONCLUSTERED INDEX IX_F_Log
ON F_Log(userId,customerId,shopId)
--不唯一 非聚集索引
CREATE UNIQUE NONCLUSTERED INDEX IX_F_Log
ON F_Log(userId,customerId,shopId)
--唯一 非聚集索引
SQL 索引创建
标签:user custom index class style log tom color sql