发布网友 发布时间:2022-04-24 05:35
共3个回答
热心网友 时间:2022-04-07 22:57
select a.name as tabname
,h.name as idname
from sys.objects as a
right join sys.indexes as h on a.object_id=h.object_id
where a.type<>'s'
go
由于索引和系统列没有直接对应关系 所以不能直接查看列字段和字段长度
热心网友 时间:2022-04-08 01:50
select * from user_indexs;
热心网友 时间:2022-04-08 03:41
百度一下应该有答案