select t1.tabname,t2.indexname,t2.dbspace
from systables t1,sysfragments t2
where t1.tabid=t2.tabid
and t2.dbspace='idxdbs'
from systables t1,sysfragments t2
where t1.tabid=t2.tabid
and t2.dbspace='idxdbs'
本文提供了一个SQL查询示例,展示了如何从系统表systables和sysfragments中选择表名、索引名及数据库空间信息,特别关注了当数据库空间为'idxdbs'的情况。
3987

被折叠的 条评论
为什么被折叠?