Oracle设置表/列注释
设置表注释:comment on table 表名 is '注释'
eg:comment on table lcnotemanage is '照会管理表'
删除表注释:comment on table 表名 is ''
设置列注释:comment on column 表名.列名 is '注释'
删除列注释:comment on column 表名.列名 is ''
eg:comment on column lcnotemanage.sendemail IS '发件人邮箱地址';
在pl/sql里执行完之后,鼠标放到表名上,按住ctrl,点进去,即可看到我们添加的注释