查找 oracle 数据库中包含某一字段的所有表的表名 select table_name from DBA_TAB_COLUMNS where COLUMN_NAME='字段名';字段名需要大写 ...