标签:系统 字段 -- user sel table and column 分区
#系统表
--查询某类表中,某个字段有哪些分布
select * from user_tab_cols a where a.TABLE_NAME like ‘%TBL%‘ and a.COLUMN_NAME like ‘%CLEAR%‘
#分区
--分区表有哪些
SELECT * FROM useR_TAB_PARTITIONS WHERE TABLE_NAME=‘T表A‘
标签:系统 字段 -- user sel table and column 分区
原文地址:http://www.cnblogs.com/nuli/p/7754878.html