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

oracle查看该用户的所有表名字、表注释、字段名、字段注释、是否为空、字段类型

时间:2014-10-31 11:58:09      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:名字表注释字段名字段注释是否为空字段类型

--oracle查看该用户的所有表名字、表注释、字段名、字段注释、是否为空、字段类型	
select distinct TABLE_COLUMN.*,
                TABLE_NALLABLE.DATA_TYPE,
                TABLE_NALLABLE.NULLABLE
  from (select distinct utc.table_name  table_name,
                        utc.comments    table_comments,
                        ucc.column_name column_name,
                        ucc.comments    column_comments
          from user_tab_comments utc, user_col_comments ucc
         where utc.table_name = ucc.table_name
           and utc.table_name not like '%_B'
           and utc.table_name not like '%_Z'
           and utc.table_name not like '%1%') TABLE_COLUMN,
       (select distinct table_name, column_name, nullable, DATA_TYPE
          from user_tab_cols
         where table_name not like '%_B'
           and table_name not like '%_Z'
           and table_name not like '%1%') TABLE_NALLABLE
 where TABLE_COLUMN.column_name = TABLE_NALLABLE.column_name
   and TABLE_COLUMN.TABLE_NAME = TABLE_NALLABLE.table_name
   --and TABLE_COLUMN.column_comments  like  '%分类名称%'
   and TABLE_COLUMN.table_comments like '%字典%';
--多次去掉笛卡尔

oracle查看该用户的所有表名字、表注释、字段名、字段注释、是否为空、字段类型

标签:名字表注释字段名字段注释是否为空字段类型

原文地址:http://blog.csdn.net/xuke6677/article/details/40651603

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