本篇文章給大家分享的是有關(guān)MySQL中怎么添加注釋?zhuān)【幱X(jué)得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話(huà)不多說(shuō),跟著小編一起來(lái)看看吧。
創(chuàng)新互聯(lián)公司網(wǎng)站建設(shè)公司,提供成都做網(wǎng)站、成都網(wǎng)站建設(shè),網(wǎng)頁(yè)設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專(zhuān)業(yè)做網(wǎng)站服務(wù);可快速的進(jìn)行網(wǎng)站開(kāi)發(fā)網(wǎng)頁(yè)制作和功能擴(kuò)展;專(zhuān)業(yè)做搜索引擎喜愛(ài)的網(wǎng)站,是專(zhuān)業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來(lái)合作!
在MySQL數(shù)據(jù)庫(kù)中, 字段或列的注釋是用屬性comment來(lái)添加。
創(chuàng)建新表的腳本中, 可在字段定義腳本中添加comment屬性來(lái)添加注釋。
示例代碼如下:
create table test( id int not null default 0 comment '用戶(hù)id' )
如果是已經(jīng)建好的表, 也可以用修改字段的命令,然后加上comment屬性定義,就可以添加上注釋了。
示例代碼如下:
alter table test modify column id int not null default 0 comment '測(cè)試表id'
查看已有表的所有字段的注釋呢?
可以用命令:show full columns from table 來(lái)查看, 示例如下:
show full columns from test;
create table test1 ( field_name int comment '字段的注釋' )comment='表的注釋';
alter table test1 comment '修改后的表的注釋';
alter table test1 modify column field_name int comment '修改后的字段注釋'; -- 注意:字段名和字段類(lèi)型照寫(xiě)就行
-- 在生成的SQL語(yǔ)句中看 show create table test1; -- 在元數(shù)據(jù)的表里面看 use information_schema; select * from TABLES where TABLE_SCHEMA='my_db' and TABLE_NAME='test1' \G
-- show show full columns from test1; -- 在元數(shù)據(jù)的表里面看 select * from COLUMNS where TABLE_SCHEMA='my_db' and TABLE_NAME='test1' \G
以上就是MySQL中怎么添加注釋?zhuān)【幭嘈庞胁糠种R(shí)點(diǎn)可能是我們?nèi)粘9ぷ鲿?huì)見(jiàn)到或用到的。希望你能通過(guò)這篇文章學(xué)到更多知識(shí)。更多詳情敬請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。