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 –在ABC表上创建聚集