sql2005的索引

来源:互联网 发布:ios程序员工资一般多少 编辑:程序博客网 时间:2024/05/20 12:22

--索引(uniqueclusterednonclustered

--创建索引

truncate table test

create unique index un_index 

on test(name)

--系统的存储过程查看索引信息

exec sp_helpindex test

--删除索引

drop index test.un_index

原创粉丝点击