在MySQL資料庫中,欄位或欄位的註解是用屬性comment來新增。建立新表格的腳本中, 可在欄位定義腳本中新增comment屬性來新增註解。下面就來介紹MySQL加入註解的方法,有需要的可以參考一下。
在MySQL資料庫中,欄位或欄位的註解是用屬性comment來新增。
建立新表的腳本中, 可在欄位定義腳本中新增comment屬性來新增註解。
範例程式碼如下:
create table test( id int not null default 0 comment '用户id' )
如果是已經建好的表, 也可以用修改欄位的指令,然後加上comment屬性定義,就可以加入上註解了。
範例程式碼如下:
alter table test modify column id int not null default 0 comment '测试表id'
查看已有表格的所有欄位的註解呢?
可以用指令:show full columns from table 來查看, 範例如下:
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 '修改后的字段注释'; -- 注意:字段名和字段类型照写就行
-- 在生成的SQL语句中看 show create table test1; -- 在元数据的表里面看 use information_schema; select * from TABLES where TABLE_SCHEMA='my_db' and TABLE_NAME='test1' \G
-- show show full columns from test1; -- 在元数据的表里面看 select * from COLUMNS where TABLE_SCHEMA='my_db' and TABLE_NAME='test1' \G
相關推薦:《mysql教學》
以上是MySQL如何新增註釋的詳細內容。更多資訊請關注PHP中文網其他相關文章!