您现在的位置是:网站首页> 编程资料编程资料
oracle 常用的几个SQL_oracle_
2023-05-27
495人已围观
简介 oracle 常用的几个SQL_oracle_
1 查找记录条数 select count(*) from table_name(换成表名)
2 查找表数据大小
select num_rows * avg_row_len
from user_tables
where table_name = 'table_name(换成表名)';
更多可以参考下https://www.jb51.net/article/7827.htm
2 查找表数据大小
select num_rows * avg_row_len
from user_tables
where table_name = 'table_name(换成表名)';
更多可以参考下https://www.jb51.net/article/7827.htm
相关内容
- Linux ORCLE数据库增量备份脚本_oracle_
- ORACLE常用数值函数、转换函数、字符串函数_oracle_
- Oracle 多行记录合并/连接/聚合字符串的几种方法_oracle_
- oracle 存储过程和触发器复制数据_oracle_
- Oracle中sys和system的区别小结_oracle_
- 一些实用的sql语句_oracle_
- Oracle字符集修改查看方法_oracle_
- Oracle 分析函数RANK(),ROW_NUMBER(),LAG()等的使用方法_oracle_
- oracle 更改数据库名的方法_oracle_
- oracle impdp network_link参数使用介绍_oracle_
