首页 > 数据库 > Oracle > 正文

oracle怎么查询表的行数

WBOY
发布: 2022-03-01 11:06:53
原创
17916 人浏览过

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

oracle怎么查询表的行数

本教程操作环境: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怎么查询表的行数的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板