oracle查询所有用户表的表名、主键名称、索引、外键等
摘要:
1、查找表的所有索引(包括索引名,类型,构成列):select t.*,i.index_type from user_ind_columns t,user_indexes i where t.index_name = i.index_name and t.table_name = i.table_name and t.table_name = 要查询的表2、查找表的主键(包括名称,构成列):select cu.* from user_cons_columns cu, user_constraints au where cu.constraint_name = au.constraint_nam 阅读全文
posted @ 2012-10-08 15:20 Thankstar 阅读(3036) 评论(0) 推荐(0) 编辑