当前位置:主页 > 数据库 > Oracle >

oracle 常用的几个SQL

时间:2021-05-11 08:52:31 | 栏目: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

您可能感兴趣的文章:

相关文章