e65ec7eec2fa97e2396f146b4a277c7b.png

慕莱坞7535251

在Oracle数据库中,查看所有表及对应个表的行数,只用一个select语句查询table_name和num_rows两个字段即可。table_name是表名,num_rows代表表的行数。具体如下:1、查询数据库所有的表sql:select t.table_name,t.num_rows from all_tables t;sql执行后的输出结果如下图:2、查询当前用户表sql:select t.table_name,t.num_rows from user_tables t;sql执行后输出结果如下图:扩展资料:分享一些ORACLE中,对所有表的查询sql:1、查询所有表名:select t.table_name from user_tables t;2、查询所有字段名:select t.column_name from user_col_comments t;3、查询指定表的所有字段名:select t.column_name from user_col_comments t where t.table_name = 'BIZ_DICT_XB';4、查询指定表的所有字段名和字段说明:select t.column_name, t.column_name from user_col_comments t where t.table_name = 'BIZ_DICT_XB';5、查询所有表的表名和表说明:select t.table_name,f.comments from user_tables t inner join user_tab_comments f on t.table_name = f.table_name;6、查询模糊表名的表名和表说明:select t.table_name from user_tables t where t.table_name like 'BIZ_DICT%';select t.table_name,f.comments from user_tables t inner join user_tab_comments f on t.table_name = f.table_name where t.table_name like 'BIZ_DICT%';7、查询表的数据条数、表名、中文表名select a.num_rows, a.TABLE_NAME, b.COMMENTS from user_tables a,user_tab_comments b WHERE a.TABLE_NAME = b.TABLE_NAME  order by TABLE_NAME;

Logo

为开发者提供学习成长、分享交流、生态实践、资源工具等服务,帮助开发者快速成长。

更多推荐