mysql怎么添加注释
程序员文章站
2022-03-01 22:25:51
...
mysql添加注释的方法:1、使用“alter table 表名 modify 字段名 类型 约束 comment '注释内容';”语句为字段添加注释;2、用“alter table 表名 comment '注释内容';”语句为表添加注释。
本教程操作环境:windows7系统、mysql8版本、Dell G3电脑。
MySql如何添加注释
**在mysql数据库中,数据库表和字段的注释用属性comment来添加。*
1.为字段添加注释:
1)创建新表时,在表的字段约束后面添加注释。
例如:
create table users(id int(11) primary key comment ‘用户id’);
这里的users为表名,id为字段名,int(11)为类型,primary key为约束。
2)如果是已经建好的表,可以用修改字段的命令,加上comment属性。
例如:
alter table users modify name varchar(20)not null comment ‘用户名’;
这里的users为表名,name为字段名, varchar(20)为类型,not null 为约束。
2.为表添加注释:
1)创建新表时,在括号外面写表注释。
例如:
create table users ( id int(11) primary key comment '用户id ') comment=‘用户信息表’;
2)已经建好的表,可以修改表的时候加上注释。
例如:
alter table users comment ‘用户信息表’;
这里的users为表名。
3.查看表注释的方法
show create table users;
这里users为表名。
4.查看字段注释的方法
show full columns from users;
这里users为表名。
【相关推荐:mysql视频教程】
以上就是mysql怎么添加注释的详细内容,更多请关注其它相关文章!
上一篇: mysql怎么实现字段求和
下一篇: mysql中的注释有哪些