当前位置: 代码迷 >> SQL >> oracle sql查寻表的字段与注释与基本信息
  详细解决方案

oracle sql查寻表的字段与注释与基本信息

热度:343   发布时间:2016-05-05 15:23:17.0
oracle sql查找表的字段与注释与基本信息
select tab.TABLE_NAME,         --表名
       tab.COLUMN_NAME,        --字段名
       tab.DATA_TYPE,        --字段类型
       tab.DATA_LENGTH,        --字段长度
       col.comments,        --字段注释
       comm.comments           --表注释
  from  all_tab_columns tab,
all_col_comments col,
user_tab_comments comm
  where
tab.TABLE_NAME = col.table_name
    and tab.COLUMN_NAME = col.column_name
    and tab.TABLE_NAME = comm.table_name
    and tab.TABLE_NAME = '表名(大写)'
  order by tab.TABLE_NAME, tab.COLUMN_ID
  相关解决方案