在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’ ;
comment on table table_name is ‘comments_on_tab_information’;
comment on column table.column_name is ‘comments_on_col_information’;
SQL> select * from user_tab_comments where TABLE_NAME=’EMPLOYEES’; TABLE_NAME TABLE_TYPE COMMENTS
Oracle視頻教程》
以上是oracle怎麼增加列註釋的詳細內容。更多資訊請關注PHP中文網其他相關文章!