专题文章
时长:00:00更新时间:2020-11-09 07:12:19
sqlserver聚集索引和非聚集索引实例:create database myIndexDemo go use myIndexDemo go create table ABC ( A int not null, B char(10), C varchar(10) ) go insert into ABC select 1,'B','C' union select 5,'B','C' union select 7,'B','C' union select 9,'B','C' go select * from ABC -
查看详情