您现在的位置是:网站首页> 编程资料编程资料

oracle 常用的几个SQL_oracle_

2023-05-27 494人已围观

简介 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

-六神源码网