Maison >base de données >tutoriel mysql >获取SQL Server数据库中的聚簇索引信息

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

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBoriginal
2016-06-07 14:57:501142parcourir

获取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 [表名]
?
Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Article précédent:批量操作初始化序列初始值Article suivant:oracle外键反查套件