oracle数据库查询常用语句

1.查询SCOTT表中有多少表,并显示表的一些描述
select * from all_tables WHERE owner='SCOTT' ;

2.查询oracle数据库版本
select * from v$version;
select version from v$instance;
select version FROM Product_component_version;

原文地址:https://www.cnblogs.com/fuyuanming/p/4848160.html