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

ORACLE 查询所有表和字段信息

时间:2018-07-06 18:33:30      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:type   nbsp   acl   ble   nts   order by   ora   bsp   name   

select a.owner,
          a.table_name,
          c.comments tab_comments,
          a.column_name,
          a.data_type,
          b.comments col_comments
from all_tab_columns a, all_col_comments b, all_tab_comments c
where a.table_name = b.table_name
   and a.owner = b.owner
   and a.column_name = b.column_name
   and a.table_name = c.table_name
   and a.owner = c.owner
   and c.table_type = ‘TABLE‘
   and a.table_name in (‘T_KH‘)
order by a.table_name;

ORACLE 查询所有表和字段信息

标签:type   nbsp   acl   ble   nts   order by   ora   bsp   name   

原文地址:https://www.cnblogs.com/wangrui1587165/p/9274987.html

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