如果想查看数据库中有哪些表可以通过如下命令看
登陆到有DBA权限的用户
select table_name from dba_tables where owner not in('SYS','SYSTEM');
如果想看当前用户下有哪下表
select table_name from user_tables;
如果想查看数据库中有哪些表可以通过如下命令看
登陆到有DBA权限的用户
select table_name from dba_tables where owner not in('SYS','SYSTEM');
如果想看当前用户下有哪下表
select table_name from user_tables;