欢迎来到福编程网,本站提供各种互联网专业知识!
您的位置:网站首页 > 数据库 > Oracle

oracle 常用的几个SQL

发布时间:2009-11-30 作者: 来源:转载
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.jb51.net/article/7827.htm

相关推荐