在MySQL數(shù)據(jù)庫(kù)中,\x0d\x0a字段或列的注釋是用屬性comment來(lái)添加。\x0d\x0a\x0d\x0a創(chuàng)建新表的腳本中,\x0d\x0a可在字段定義腳本中添加comment屬性來(lái)添加注釋。\x0d\x0a\x0d\x0a示例代碼如下:\x0d\x0acreate table test(\x0d\x0aid int not null default 0 comment '用戶(hù)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那么如何來(lái)查看已有表的所有字段的注釋呢?\x0d\x0a可以用命令:show full columns from table 來(lái)查看,\x0d\x0a示例如下:\x0d\x0ashow full columns from test;
創(chuàng)新互聯(lián)公司-專(zhuān)業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性?xún)r(jià)比瓊山網(wǎng)站開(kāi)發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫(kù),直接使用。一站式瓊山網(wǎng)站制作公司更省心,省錢(qián),快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋瓊山地區(qū)。費(fèi)用合理售后完善,十年實(shí)體公司更值得信賴(lài)。
MySQL
查看表結(jié)構(gòu)簡(jiǎn)單命令。
一、簡(jiǎn)單描述表結(jié)構(gòu),字段類(lèi)型desc
tabl_name;
顯示表結(jié)構(gòu),字段類(lèi)型,主鍵,是否為空等屬性,但不顯示外鍵。
二、查詢(xún)表中列的注釋信息
select
*
from
information_schema.columns
where
table_schema
=
'db'
#表所在數(shù)據(jù)庫(kù)
MySQL
查看表結(jié)構(gòu)簡(jiǎn)單命令。
一、簡(jiǎn)單描述表結(jié)構(gòu),字段類(lèi)型desc
tabl_name;
顯示表結(jié)構(gòu),字段類(lèi)型,主鍵,是否為空等屬性,但不顯示外鍵。
二、查詢(xún)表中列的注釋信息
select
*
from
information_schema.columns
where
table_schema
=
'db'
#表所在數(shù)據(jù)庫(kù)
and
table_name
=
'tablename'
;
#你要查的表
三、只查詢(xún)列名和注釋
select
column_name,
column_comment
from
information_schema.columns
where
table_schema
='db'
and
table_name
=
'tablename'
;
四、#查看表的注釋
select
table_name,table_comment
from
information_schema.tables
where
table_schema
=
'db'
and
table_name
='tablename'
ps:二~四是在元數(shù)據(jù)表中查看,我在實(shí)際操作中,常常不靈光,不知為什么,有了解的大俠請(qǐng)留印。
五、查看表生成的DDL
show
create
table
table_name;