怎么用sql查看用户用了哪个oracle数据库

2024-11-07 10:36:37
推荐回答(1个)
回答1:

查询系统表:select * from all_tables where table_name not in (select table_name from user_tables);
查询用户表:select * from user_tables;