欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-08-05 20:05:19
查询所有表名: select t.table_name from user_tables t; 查询所有字段名: select t.column_name from user_col_comment...

查询所有表名:

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;