SQL中怎么创建非聚集索引

SQL中怎么创建非聚集索引,第1张

--创建聚集索引

create nonclustered index inx_entry_stock_on entry_stock_d(entry_stock_bi)

延伸:

--创建聚集索引

create clustered index inx_entry_stock_bi on entry_stock_d(entry_stock_bi)

--主键

alter table entry_stock_d add primary key nonclustered--主键且非聚集

( entry_stock_bi,aid)

可以的,修改语句如下

ALTER TABLE `数据库名`.`表名` ADD INDEX `自定义索引名` (`主键列名`)

不过mysql主键上默认就有聚集索引,除非是用于复合索引,否则没必要再对主键重复添加非聚集索引。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11459734.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-16
下一篇 2023-05-16

发表评论

登录后才能评论

评论列表(0条)

保存