添加注释
comment on column 表名.字段名 is '注释内容';
comment on column OPERATOR_INFO.MAIN_OPER_ID is '归属操作员';

comment on table 表名 is '注释内容';
comment on table OPERATOR_INFO is '操作员信息表';

获取注释
select * from user_tab_comments;--表注释
select * from user_col_comments;--字段注释

相关文章:

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