-
查询当前用户下的所有表信息
select * from user_tables
-
查询所有用户的表信息
select * from all_tables
-
查询所有的用户信息
select distinct object_name TABLE_SCHEMA from all_objects where object_type = 'SCH';
2022-10-26 21:28:27
select * from user_tables
select * from all_tables
查询所有的用户信息
select distinct object_name TABLE_SCHEMA from all_objects where object_type = 'SCH';