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