CREATE INDEX Index_Test ON t_table(fid,fname)
怎么样通过sql语句,查询出来t_table表中的Index_Test的索引字段fid,fname啊?
EXEC sp_helpindex '表名'
我知道这个方法。但是查询出来的是包括主键索引,唯一索引,我只想要这种索引Index
@zfanlong1314: 根据 sp_helpindex 存储过程的代码进行修改
sp_helpindex index_test
http://blog.sqltechie.com/2008/11/index-information-spmsindexspacesphelpi.html