获取某个模式下的所有数据表 select TABLE_NAME from dba_tables where owner='模式名' 获取表的所有字段 select * from all_tab_columns where owner='模式名' and Table_Name='表名'