Oracle_查询当前用户_其他用户下所有表

sql


select * from user_tables;

select * from 
all_tables 
where owner='OTHER_TABLE' order by table_name asc;

你可能感兴趣的:(Oracle,oracle,sql,用户)