标签:user custom index class style log tom color sql
CREATE 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)--唯一 非聚集索引
标签:user custom index class style log tom color sql
原文地址:https://www.cnblogs.com/Warmsunshine/p/10118889.html