在oracle中,可以利用「comment on」指令修改表格註釋,該指令用於給表或欄位加以說明,也就是加入註釋,語法為「comment on table 表名is '表的註釋資訊';".
本教學操作環境:Windows10系統、Oracle 11g版、Dell G3電腦。
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 '';
推薦教學:《Oracle影片教學》
以上是oracle怎麼修改表註釋的詳細內容。更多資訊請關注PHP中文網其他相關文章!