首页 > 数据库 > Oracle > 正文

oracle 常用的几个SQL

2024-08-29 13:56:05
字体:
来源:转载
供稿:网友
1 查找记录条数 select count(*) from table_name(换成表名)

2 查找表数据大小

select num_rows * avg_row_len
from user_tables
where table_name = 'table_name(换成表名)';

更多可以参考下
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表