码迷,mamicode.com
首页 > 数据库 > 详细

Oracle 查询库中所有表名、字段名、字段名说明,查询表的数据条数、表名、中文表名、

时间:2016-10-11 11:01:18      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:

查询所有表名:
select t.table_name from user_tables t;
查询所有字段名:
select t.column_name from user_col_comments t;
查询指定表的所有字段名:
select t.column_name from user_col_comments t where t.table_name = ‘BIZ_DICT_XB‘;
查询指定表的所有字段名和字段说明:
select t.column_name, t.column_name from user_col_comments t where t.table_name = ‘BIZ_DICT_XB‘;
查询所有表的表名和表说明:
select t.table_name,f.comments from user_tables t inner join user_tab_comments f on t.table_name = f.table_name;
查询模糊表名的表名和表说明:
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%‘;

--查询表的数据条数、表名、中文表名
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;

 

Oracle 查询库中所有表名、字段名、字段名说明,查询表的数据条数、表名、中文表名、

标签:

原文地址:http://www.cnblogs.com/hyq0002013/p/5948419.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!