create table test1 ( field_name int comment '字段的注释' ); 修改字段的注释
alter table test1 modify column field_name int comment '修改后的字段注释';
-- 注意:字段名和字段类型照写就行 查看字段注释的方法
-- show show full columns from test1; -- 在元数据的表里面看 select * from COLUMNS where TABLE_SCHEMA='my_db' and TABLE_NAME='test1' /G 以上是“mysql如何设置字段注释”这篇文章的所有内容,感谢各位的阅读!