码迷,mamicode.com
首页 > 数据库 > 详细

SQL Server 查看指定表上的索引

时间:2014-10-18 13:52:09      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:blog   http   ar   for   sp   2014   on   log   bs   

解决方案:

            sys.indexs;

----------------------------------------------------------------------------------------------------------------------------------

前期准备:

            建表、

                  create table T(X int primary key,Y int);
                  go

            建索引
                  create index ix_for_T_y on T(Y);
                  go

-------------------------------------------------

例子:

      查看表中的索引

      select * from sys.indexs where object_id = OBJECT_ID(‘T‘);

     bubuko.com,布布扣

 

SQL Server 查看指定表上的索引

标签:blog   http   ar   for   sp   2014   on   log   bs   

原文地址:http://www.cnblogs.com/JiangLe/p/4032890.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!