千家信息网

oracle获取表或视图的字段名、数据类型、注释

发表于:2025-01-21 作者:千家信息网编辑
千家信息网最后更新 2025年01月21日,selectt1.COLUMN_NAME 字段名,t1.DATA_TYPE 数据类型,t2.comments 注释from(select t.COLUMN_NAME,t.DATA_TYPE from
千家信息网最后更新 2025年01月21日oracle获取表或视图的字段名、数据类型、注释

select

t1.COLUMN_NAME 字段名,

t1.DATA_TYPE 数据类型,

t2.comments 注释

from

(select t.COLUMN_NAME,t.DATA_TYPE from user_tab_columns t where t.TABLE_NAME=upper('vw_personbaseprint_data')) t1,

(select tt.column_name,tt.comments from user_col_comments tt where tt.table_name=upper('vw_personbaseprint_data')) t2

where t1.COLUMN_NAME=t2.column_name

0