当前位置: 移动技术网 > IT编程>数据库>Oracle > Oracle查询库中所有表名、字段名、字段名说明,查询表的数据条数、表名、中文表名等实例教程

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

2018年09月30日  | 移动技术网IT编程  | 我要评论

和平饭店剧情分集介绍,www.0818.cm,笨笨女的血族王子

查询所有表名:

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;

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网