oracle 常用的几个SQL
编程学习 2021-07-05 16:08www.dzhlxh.cn编程入门
oracle几个常用的SQL
1 查找记录条数 select count(*) from table_name(换成表名)
2 查找表数据大小
select num_rows * avg_row_len
from user_tables
where table_name = 'table_name(换成表名)';
更多可以参考下
2 查找表数据大小
select num_rows * avg_row_len
from user_tables
where table_name = 'table_name(换成表名)';
更多可以参考下
上一篇:oracle中的视图详解
下一篇:Linux ORCLE数据库增量备份脚本