select 
      ut.COLUMN_NAME,--字段名称
      uc.comments,--字段注释
      ut.DATA_TYPE,--字典类型
      ut.DATA_LENGTH,--字典长度
      ut.NULLABLE--是否为空
from user_tab_columns  ut
inner JOIN user_col_comments uc
on ut.TABLE_NAME  = uc.table_name and ut.COLUMN_NAME = uc.column_name
where ut.Table_Name='B_EVAL_GRADE' 
order by ut.column_name

Table_Name= 的表名需要大写。

相关文章:

  • 2022-12-23
  • 2021-05-31
  • 2021-08-09
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-05-17
  • 2022-02-21
  • 2022-12-23
  • 2022-12-23
  • 2022-01-19
相关资源
相似解决方案