Home >Database >Mysql Tutorial >获取SQL Server数据库中的聚簇索引信息

获取SQL Server数据库中的聚簇索引信息

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-07 14:57:501144browse

获取SQLServer数据库中的聚簇索引信息 无 SELECT t.name [表名],ix.name [聚簇索引名称],c.name [聚簇索引包括字段] from sys.indexes ixINNER JOIN sys.tables t ON ix.object_id = t.object_id AND ix.type_desc = 'CLUSTERED' AND t.type = 'U'INNER JOIN

获取SQL Server数据库中的聚簇索引信息
SELECT t.name [表名],ix.name [聚簇索引名称],c.name [聚簇索引包括字段] from sys.indexes ix
INNER JOIN sys.tables t ON ix.object_id = t.object_id AND ix.type_desc = 'CLUSTERED' AND t.type = 'U'
INNER JOIN sys.index_columns ic ON ic.index_id = ix.index_id and ix.object_id = ic.object_id
INNER JOIN sys.columns c ON ic.column_id = c.column_id and ic.object_id = c.object_id
ORDER BY [表名]
?
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn