在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 '用戶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)公司-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價(jià)比瓊山網(wǎng)站開(kāi)發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫(kù),直接使用。一站式瓊山網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋瓊山地區(qū)。費(fèi)用合理售后完善,十年實(shí)體公司更值得信賴。
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ù)庫(kù)
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ù)庫(kù)
and
table_name
=
'tablename'
;
#你要查的表
三、只查詢列名和注釋
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;
標(biāo)題名稱:mysql怎么查看注釋 mysql查看注釋語(yǔ)句
轉(zhuǎn)載來(lái)于:http://jinyejixie.com/article36/dosdppg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站設(shè)計(jì)、面包屑導(dǎo)航、網(wǎng)站收錄、建站公司、外貿(mào)網(wǎng)站建設(shè)、企業(yè)網(wǎng)站制作
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)