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