oracle和mysql查询某字段在哪个表中 oracle的 select TABLE_NAME from user_tab_columns where COLUMN_NAME='字段名 mysql的: select table_schema ,table_name from information_schema.columns where column_name = ‘字段名’ 查询结果table_schema为数据库名,table_name为表名