在oracle中我们经常看到给表和列添加备注,备注增加了后期的可维护性
1.对表的说明
comment on table table_name is 'comments';
2.对表中列的说明
comment on column table.column_name is 'comments';
3.查看表中列的说明
SQL> select * from user_col_comments where TABLE_NAME='EMPLOYEES';
4.查看表的说明
SQL>select * from user_tab_comments where TABLE_NAME='EMPLOYEES';
5.删除表级说明,也就是将其置为空
SQL> comment on table employees is '';
Comment added
6.删除列级说明,也是将其置为空
SQL> comment on column employees.salary is '';
Comment added