欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

mysql添加备注信息的实现

程序员文章站 2022-12-01 21:06:00
前言这连天有人问我一些mysql的备注信息,不得已还是写一遍博客吧1、创建表的时候,添加表名备注和字段备注create table `healerjean_comment` ( `id` bigint...

前言

这连天有人问我一些mysql的备注信息,不得已还是写一遍博客吧

1、创建表的时候,添加表名备注和字段备注

create table `healerjean_comment` (
 `id` bigint(20) not null auto_increment,
 `name` varchar(32) not null comment '名字备注',
 `email` varchar(64) not null,
 `message` text ,
 primary key (`id`),
 key `index_name` (`name`)
) comment='表名备注' ;

2、表创建完成添加表名备注和字段备注

alter table healerjean_comment comment='测试索引表';
alter table healerjean_comment modify name varchar(32) not null comment '名字备注'

3、查看备注信息

show create table healerjean;

mysql添加备注信息的实现

show full columns from healerjean;

mysql添加备注信息的实现

到此这篇关于mysql添加备注信息的实现的文章就介绍到这了,更多相关mysql添加备注信息内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

相关标签: mysql 备注信息