设为首页 加入收藏

TOP

oracle查看该用户的所有表名字、表注释、字段名、字段注释、是否为空、字段类型
2015-07-24 11:02:00 来源: 作者: 【 】 浏览:2
Tags:oracle 查看 用户 所有 名字 注释 段名 是否 类型
--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 '%字典%';
--多次去掉笛卡尔

】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
分享到: 
上一篇Oracledb中禁止使用sqlplus的方法 下一篇Oracledb中CONNECTrole的含义

评论

帐  号: 密码: (新用户注册)
验 证 码:
表  情:
内  容:

·C++模板 (template) (2025-12-26 15:49:49)
·C 语言中模板的几种 (2025-12-26 15:49:47)
·模板(泛型) - C语 (2025-12-26 15:49:44)
·C语言中,“指针”用 (2025-12-26 15:20:18)
·在c语言的指针运算中 (2025-12-26 15:20:15)