通过字段查询表 select table_name from user_tab_columns where column_name = 'NAME';
通过索引名查询表名和相应的字段名 select index_name,table_name,column_name from dba_ind_columns where index_name='PK_EMP';
根据字段名查询表和对应字段 select owner, table_name, COLUMN_NAME from dba_tab_cols where column_name like '%_ORG_PATH' or column_name like '%_PATH' and owner = 'ECIQ_OPERATION';
查询表字段的中文名 select table_name as 英文表名, comments as 中文表名 from user_col_comments where comments like '&comments';