Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我的复合索引是唯一的,我是否需要主键?然后我应该将我的复合索引分配为主键吗?
这取决于情况。
通常一个主键总是在表上创建一个聚集索引。
其他键(如唯一键和复合索引)在表上创建非聚集索引。
您可以将复合索引分配为主键,只要它们形成表中行的唯一标识。
建议在 Web 应用程序中使用基于数字单字段的主键,以获得更好的应用程序层性能。
是的,您可以将索引分配为主键。但这取决于您的需要。