在oracle中,可以利用「comment on column 表名.列名is '列註解';」增加列註解;comment 是註解的意思, comment on指令用於給表格或欄位加以說明,也即添加註釋,column用於設定列的資料內容。
本教學操作環境:Windows10系統、Oracle 11g版、Dell G3電腦。
給列加上註解:
SQL>comment on column 表.列 is '列注释';
擴充功能:
1、給表填加註解:SQL>comment on table表名is '表註解";
2、給列加註解:SQL>comment on column 表.列is '列註解';
3、讀取表註解:SQL> select * from user_tab_comments where comments is not null;
4、讀取列註解:SQL>select * from user_col_commnents where comments is not null and table_name='表名';
##oracle中用comment on指令為表格或欄位加以說明,語法如下:COMMENT ON { TABLE [ schema. ] { table | view } | COLUMN [ schema. ] { table. | view. | materialized_view. } column | OPERATOR [ schema. ] operator | INDEXTYPE [ schema. ] indextype | MATERIALIZED VIEW materialized_view } IS ‘text’ ;用法如下:1.對錶的說明
comment on table table_name is ‘comments_on_tab_information’;2.對錶中列的說明
comment on column table.column_name is ‘comments_on_col_information’;3.查看表格的說明
SQL> select * from user_tab_comments where TABLE_NAME=’EMPLOYEES’; TABLE_NAME TABLE_TYPE COMMENTS新增註解的好處:1.可以透過SQL語句快速查詢,只要知道表格名稱和欄位名稱定位註解極方便快速。2.註解內容是儲存在字典表裡的,只要表結構還在,那麼SQL腳本即使沒有了也可以定位查詢。3.不需要猜字段是什麼意思,因為在簡表的時候已經給了沒有二意的註釋,後期承接明確。推薦教程:《
Oracle視頻教程》
以上是oracle怎麼增加列註釋的詳細內容。更多資訊請關注PHP中文網其他相關文章!