表建立時新增注釋:
create table user(
id int not null default 0 comment '使用者id',
account varchar(20) not null default '' comment '使用者賬號',
primary key (`id`),
key `act` (`account`)
) engine=innodb auto_increment=1 default charset=utf8 comment '使用者表'
修改列注釋:
alter table user modify column account varchar(20) comment '修改後的字段注釋';
--注意:欄位名和字段型別照寫就行
修改表注釋
alter table user comment '修改後的表的注釋';
檢視注釋:
show full fields from user
參考:
mysql新增表注釋 字段注釋 檢視與修改注釋
1 建立表的時候寫注釋 create table test1 field name int comment 欄位的注釋 comment 表的注釋 2 修改表的注釋 alter table test1 comment 修改後的表的注釋 3 修改欄位的注釋 alter table test1 modif...
mysql新增表注釋 字段注釋 檢視與修改注釋
1 建立表的時候寫注釋 create table test1 field name int comment 欄位的注釋 comment 表的注釋 2 修改表的注釋 alter table test1 comment 修改後的表的注釋 3 修改欄位的注釋 alter table test1 modif...
mysql新增表注釋 字段注釋 檢視與修改注釋
mysql新增表注釋 字段注釋 檢視與修改注釋。1 建立表的時候寫注釋 create table test1 field name int comment 欄位的注釋 comment 表的注釋 2 修改表的注釋 alter table test1 comment 修改後的表的注釋 3 修改欄位的注釋...