在ORACLE中給表、列增加注釋以及讀取注釋
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='表名';
附表USER_TAB_COMMENTS和user_col_comments的結構:
1、user_tab_comments由table_name、table_type和comments三部分組成。
2、user_col_comments由table_name、column_name和comments三部分組成。
3、在SQL*PLUS中顯示表結構:desc 表名;