在MySQL資料庫中,欄位或欄位的註解是用屬性comment來新增。
推薦課程:MySQL教學
#建立新表的腳本中,
#可在欄位定義腳本中新增comment屬性來新增註解。
範例程式碼如下:
create table test( id int not null default 0 comment '用户id' )
如果已經建置好的表,
也可以用修改欄位的指令,然後加上comment屬性定義,就可以加入上註了。
範例程式碼如下:
alter table test change column id id int not null default 0 comment '测试表id'
查看已有表格的所有欄位的註解呢?
可以用指令:show full columns from tablename 來查看,
範例如下:
show full columns from test;
1、建立表格的時候寫註解
create table test1 ( field_name int comment '字段的注释' )comment='表的注释';
2、修改表格的註解
alter table test1 comment '修改后的表的注释';
3、修改欄位的註解
alter table test1 modify column field_name int comment '修改后的字段注释'; --注意:字段名和字段类型照写就行
4、檢視表格註解的方法
--在生成的SQL语句中看 show create table test1; --在元数据的表里面看 use information_schema; select * from TABLES where TABLE_SCHEMA='my_db' and TABLE_NAME='test1' \G
5、檢視欄位註解的方法
--show show full columns from test1; --在元数据的表里面看 select * from COLUMNS where TABLE_SCHEMA='my_db' and TAB
以上是mysql的comment怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!