Oracle | 給表和字段添加注釋
comment on column 表名.字段名 is '注釋內容'; comment on column OPERATOR_INFO.MAIN_OPER_ID is '歸屬操作員'; comment on table 表名 is '注釋內容'; comment ...
為表添加字段和注釋的方法 user tab columns是保存了當前用戶的表 視圖和Clusters中的列等信息,用於oracle獲取表結構。 ...
2018-12-24 09:59 0 2499 推薦指數:
comment on column 表名.字段名 is '注釋內容'; comment on column OPERATOR_INFO.MAIN_OPER_ID is '歸屬操作員'; comment on table 表名 is '注釋內容'; comment ...
comment on column 表名.字段名 is '注釋內容'; comment on table 表名 is '注釋內容'; ...
#hehe 表中添加ISXP 字段 alter table hehe add( ISXP varchar2(1) ); COMMENT ON COLUMN "hehe"."ISXP" IS '是否信披過0已信披1未信披'; ...
...