美文网首页
COMMENT ON 的用法

COMMENT ON 的用法

作者: 书院五竹 | 来源:发表于2018-05-31 16:21 被阅读27次

Oracle中用comment on命令给表或字段加以说明。

用法如下:

1.对表的说明:
comment on table table_name is '对表的说明';

2.对表中列的说明:
comment on column table.column_name is '对表中列的说明';

3.查看表的说明

select * from user_tab_comments where table_name = 'employees';

4.查看表中列的说明

select * from user_col_comments where table_name = 'employees';

5.查看数据库中所有表中列的说明

select * from user_col_comments where comments is not null;

6.删除表级或列级说明,即时将其设置为空

comment on table employees is '';
comment on column employees.salary is '';

相关文章

网友评论

      本文标题:COMMENT ON 的用法

      本文链接:https://www.haomeiwen.com/subject/irmqsftx.html