好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

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的详细内容...

  阅读:35次