oracle comment
comment 命令可以为表和列添加相应的注释,使表更具有可读性!
1.给表添加注释
comment on table scott.DW_RLW_USER_ACTION is ‘用户日汇总‘;
2.删除表的注释
select ‘comment on table ‘||owner||‘.‘||t.table_name||‘ is ‘‘‘‘;‘ from dba_tab_comments t where table_name=‘DW_RLW_USER_ACTION;
3.添加列的注释
comment on column scott.DW_RLW_USER_ACTION_DT.SUM_DATE is ‘产生日期‘;
4.删除列的注释
select ‘comment on column ‘||owner||‘.‘||t.table_name||‘.‘||t.column_name||‘ is ‘‘‘‘;‘ from dba_col_comments t where table_name=‘DW_RLW_USER_ACTION;
本文出自 “技术” 博客,请务必保留此出处http://589985.blog.51cto.com/1609992/1369365
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。