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

oracle怎么查询表的行数

来源:互联网 收集:自由互联 发布时间:2022-06-23
在oracle中,可用“num_rows”和“user_tables”来查询表的行数,“num_rows”列一小时更新一次,语法为“select table_name,num_rows from user_tables where 条件”。 本教程操作环境:Windows10系统、Ora

在oracle中,可用“num_rows”和“user_tables”来查询表的行数,“num_rows”列一小时更新一次,语法为“select table_name,num_rows from user_tables where 条件”。

本教程操作环境:Windows10系统、Oracle 11g版、Dell G3电脑。

oracle怎么查询表的行数

语法为:

select table_name,num_rows from user_tables

在user_tables后面可以添加符合自己的条件,当然如果你有dba权限的话,可以将user_tables换成dba_tables,

num_rows列并不是事实更新的,查新之前最好先ANALYZE下 analyze table 这里写表名compute statistics;

DBA权限下可以查询dba_tables,里面有个num_rows列

select table_name,num_rows from dba_tables where ...;

条件可以根据自己需要来加

num_rows列并不是实时更新的,1小时更新一次。

推荐教程:《Oracle视频教程》

以上就是oracle怎么查询表的行数的详细内容,更多请关注自由互联其它相关文章!

【本文来源:武汉seo公司 http://www.5h5q.com复制请保留原URL】
上一篇:oracle怎么查询表注释
下一篇:没有了
网友评论