当前位置:Gxlcms > 数据库问题 > Oracle 列名 备注

Oracle 列名 备注

时间:2021-07-01 10:21:17 帮助过:3人阅读

1

----数据库表列名 备注
select t.COLUMN_NAME, t.DATA_TYPE,c.COMMENTS,‘‘
  from user_tab_columns t, user_col_comments c
 where t.COLUMN_NAME = c.COLUMN_NAME
   and t.TABLE_NAME = ‘USER_INFO‘
   and c.TABLE_NAME = ‘USER_INFO‘
 order by t.COLUMN_NAME;
 ----

3



Oracle 列名 备注

标签:

人气教程排行