前言:利用 oracle 的视图来查询表的相关信息。

oracle 查询当前用户下的表名 + 表注释

select t.table_name tableName, f.comments comments
  from user_tables t
 inner join user_tab_comments f
    on t.table_name = f.table_name

oracle 查询某表的所有字段 + 字段注释 + 字段类型

SELECT t.TABLE_NAME  tableName,
       t.COLUMN_NAME columnName,
       t.DATA_TYPE   dataType,
       a.COMMENTS
  FROM USER_TAB_COLUMNS t
  LEFT JOIN USER_COL_COMMENTS a
    ON t.table_name = a.table_NAME
   AND t.COLUMN_NAME = a.COLUMN_NAME

 

相关文章:

  • 2022-12-23
  • 2021-07-18
  • 2022-12-23
  • 2022-12-23
  • 2022-03-01
  • 2022-12-23
  • 2021-12-06
猜你喜欢
  • 2022-02-22
  • 2022-12-23
  • 2021-08-26
  • 2022-12-23
  • 2022-12-23
  • 2022-03-06
相关资源
相似解决方案