在MySQL數(shù)據(jù)庫中,
創(chuàng)新互聯(lián)是專業(yè)的北海街道網(wǎng)站建設(shè)公司,北海街道接單;提供網(wǎng)站設(shè)計(jì)制作、成都網(wǎng)站設(shè)計(jì),網(wǎng)頁設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行北海街道網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來合作!
字段或列的注釋是用屬性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 '測(cè)試表id'
給表的字段或列添加注釋已經(jīng)知道了,
那么如何來查看已有表的所有字段的注釋呢?
可以用命令:show full columns from table 來查看,
示例如下:
show full columns from test;
MySQL
查看表結(jié)構(gòu)簡(jiǎn)單命令。
一、簡(jiǎn)單描述表結(jié)構(gòu),字段類型desc
tabl_name;
顯示表結(jié)構(gòu),字段類型,主鍵,是否為空等屬性,但不顯示外鍵。
二、查詢表中列的注釋信息
select
*
from
information_schema.columns
where
table_schema
=
'db'
#表所在數(shù)據(jù)庫
在MySQL數(shù)據(jù)庫中,\x0d\x0a字段或列的注釋是用屬性comment來添加。\x0d\x0a\x0d\x0a創(chuàng)建新表的腳本中,\x0d\x0a可在字段定義腳本中添加comment屬性來添加注釋。\x0d\x0a\x0d\x0a示例代碼如下:\x0d\x0acreate table test(\x0d\x0aid int not null default 0 comment '用戶id'\x0d\x0a)\x0d\x0a\x0d\x0a如果是已經(jīng)建好的表,\x0d\x0a也可以用修改字段的命令,然后加上comment屬性定義,就可以添加上注釋了。\x0d\x0a\x0d\x0a示例代碼如下:\x0d\x0aalter table test\x0d\x0achange column id id int not null default 0 comment '測(cè)試表id\x0d\x0a\x0d\x0a給表的字段或列添加注釋已經(jīng)知道了,\x0d\x0a那么如何來查看已有表的所有字段的注釋呢?\x0d\x0a可以用命令:show full columns from table 來查看,\x0d\x0a示例如下:\x0d\x0ashow full columns from test;