zoukankan      html  css  js  c++  java
  • SQL Server 查看指定表上的索引

    解决方案:

                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');

         

  • 相关阅读:
    UVA756
    SP30906
    SP32900
    CF940F
    洛谷P5030
    洛谷P5142
    洛谷P2569
    网络流 24 题做题记录
    矩阵
    二分图
  • 原文地址:https://www.cnblogs.com/JiangLe/p/4032890.html
Copyright © 2011-2022 走看看