1、查询所有用户的表信息
select * from all_tables;
2、查询某用户名下的表信息,用户名参数必须大写
select * from all_tables where owner = 'XXX';
3、查询当前户名下的表名
select table_name from user_tables;
4、查询当前用户下的表及字段
select user_tables.table_name,user_col_comments.column_name from user_tables left join user_col_comments on user_tables.TABLE_NAME = user_col_comments.table_name order by user_tables.table_name;
ConstXiong 备案号:苏ICP备16009629号-3