首页
编程
java
php
前端
首页
编程
java
php
前端
oracle查询当前用户能够查看的表
如题所示,查询当前用户能够查看的表,但又要除去系统自身创建的表。
select * from all_tables;
select * from user_tables
点击展开全文