当前位置: 首页 > 图文教程 > 数据库 > Oracle > oracle 常用的几个SQL

Oracle
Linux ORCLE数据库增量备份脚本
oracle 常用的几个SQL
oracle中的视图详解

Oracle 中的 oracle 常用的几个SQL


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2010-01-10   浏览: 190 ::
收藏到网摘: n/a

oracle几个常用的SQL 1 查找记录条数 select count(*) from table_name(换成表名)
2 查找表数据大小
select num_rows * avg_row_len
from user_tables
where table_name = 'table_name(换成表名)';
更多可以参考下http://www.ruanchen.com/rticle/7827.htm