1)查询所有表名:
select t.table_name from user_tables t;--表名、表空间、行数
select * fromall_tables; //所有用户的表
select * fromdba_tables; //包括系统表
2)查询所有字段名:
select * from user_tab_columns;//用户字段
select * from all_tab_columns;//所有用户字段
select * from dba_tab_columns;//所有用户表,含系统
3)查询指定表的所字段名,字段说明:
select t.column_name,t.column_name fromuser_tab_comments;
select t.column_name from user_col_comments t where t.table_name = 'BIZ_DICT_XB';
4)