plsql 在oracle中創(chuàng)建表時(shí)添加注釋使用comment字段。例如有以下表:
創(chuàng)新互聯(lián)專注于平谷網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠為您提供平谷營銷型網(wǎng)站建設(shè),平谷網(wǎng)站制作、平谷網(wǎng)頁設(shè)計(jì)、平谷網(wǎng)站官網(wǎng)定制、重慶小程序開發(fā)公司服務(wù),打造平谷網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供平谷網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。
CREATE TABLE t1(
id ?varchar2(32) primary key,
name VARCHAR2(32) ,
age VARCHAR2(32)
)
添加表注釋的命令為:
COMMENT?ON?table t1 IS?'個(gè)人信息';
添加字段注釋命令為:
comment on column t1.id ?is 'id';
comment on column t1.name is '姓名';
comment on column t1.age is '年齡';
擴(kuò)展資料
plsql中查看表注釋和字段注釋方法介紹
查看當(dāng)前用戶下所有表注釋:select * from user_tab_comments??????
結(jié)果: user_tab_comments:table_name,table_type,comments
查看當(dāng)前用戶下某表所有字段注釋:select * from user_col_comments where TABLE_NAME='某表名稱';??
結(jié)果:user_col_comments:table_name,column_name,comments
在字段后面添加comment 'XXX'
例如:
CREATE TABLE `XXX` (
`ID` int NOT NULL COMMENT '應(yīng)用ID',
)
在MySQL數(shù)據(jù)庫中,
字段或列的注釋是用屬性comment來添加。
創(chuàng)建新表的腳本中,
可在字段定義腳本中添加comment屬性來添加注釋。
示例代碼如下:
create table test(
id int not null default 0 comment '用戶id'
)
如果是已經(jīng)建好的表,
也可以用修改字段的命令,然后加上comment屬性定義,就可以添加上注釋了。
示例代碼如下:
alter table test
change column id id int not null default 0 comment '測試表id'
給表的字段或列添加注釋已經(jīng)知道了,
那么如何來查看已有表的所有字段的注釋呢?
可以用命令:show full columns from table 來查看,
示例如下:
show full columns from test;
ALTER?TABLE?table_name?COMMENT='這是表的注釋';
1.給表加注釋:
ALTER?TABLE?table_name?COMMENT='這是表的注釋';
2.給列加注釋:
ALTER?table?table_name?MODIFY?`column_name`?datetime?DEFAULT?NULL?COMMENT?'這是字段的注釋'