oracle常用的几个SQL
来源:动视网
责编:小采
时间:2020-11-09 09:23:44
oracle常用的几个SQL
oracle常用的几个SQL:oracle几个常用的SQL 1 查找记录条数 select count(*) from table_name(换成表名) 2 查找表数据大小 select num_rows * avg_row_len from user_tables where table_name = 'table_name(换成表名)'; 更多可以参考下
导读oracle常用的几个SQL:oracle几个常用的SQL 1 查找记录条数 select count(*) from table_name(换成表名) 2 查找表数据大小 select num_rows * avg_row_len from user_tables where table_name = 'table_name(换成表名)'; 更多可以参考下

oracle几个常用的SQL
1 查找记录条数 select count(*) from table_name(换成表名)
2 查找表数据大小
select num_rows * avg_row_len
from user_tables
where table_name = 'table_name(换成表名)';
更多可以参考下
oracle常用的几个SQL
oracle常用的几个SQL:oracle几个常用的SQL 1 查找记录条数 select count(*) from table_name(换成表名) 2 查找表数据大小 select num_rows * avg_row_len from user_tables where table_name = 'table_name(换成表名)'; 更多可以参考下