关于查询MySQL字段注释的5种方法总结
前言
很多场景下,我们需要查看 mysql 中表注释,或者是某张表下所有字段的注释,所以本文就来盘点和对比一下查询注释的几种方式。
创建测试数据库
开始之前咱们先创建一个数据库,以备下面演示使用。
-- 如果存在就先删除数据库 drop database if exists test2022; -- 创建数据库 create database test2022; -- 切换数据库 use test2022; -- 创建表和字段(以及相应的注释) create table `student` ( `id` int(11) not null auto_increment comment '学生编号', `sn` varchar(50) default null comment '学号', `username` varchar(250) not null comment '学生名称', `mail` varchar(250) default null comment '邮箱', `class_id` int(11) default null, primary key (`id`) ) comment='学生表' engine=innodb auto_increment=4 default charset=utf8mb4
查询所有表注释
使用以下 sql 可以查询某个数据库下所有表的注释:
select table_name 表名, table_comment 表说明 from information_schema.tables where table_schema='数据库名' order by table_name
案例:查询 test2022 数据库中的所有表注解:
select table_name 表名, table_comment 表说明 from information_schema.tables where table_schema='test2022' order by table_name
执行结果如下图所示:
查询所有字段注释
字段注释查询方式1
查询语法如下:
show full columns from 表名;
案例:查询 student 表中所有字段的注释信息:
show full columns from student;
执行结果如下图所示:
字段注释查询方式2
查询语法如下:
select column_name 字段名,column_comment 字段说明,column_type 字段类型, column_key 约束 from information_schema.columns where table_schema='数据库名' and table_name='表名';
案例:查询 student 表中所有字段的注释信息:
select column_name 字段名,column_comment 字段说明,column_type 字段类型, column_key 约束 from information_schema.columns where table_schema='test2022' and table_name='student';
执行结果如下图所示:
字段注释查询方式3
查询表的 ddl(数据定义语言)也可以看到字段的注释内容,执行的 sql 语法如下:
show create table 表名;
案例:查询 student 表中所有字段的注释信息:
show create table student;
执行结果如下图所示
字段注释查询方式4
如果使用的是 navicat 工具,可以在表上右键、再点设计,到设计页面就可以查看字段注释了,如下图所示:
但这种操作有点危险,小心手抖把表结构改错了。
字段注释查询方式5
在 navicat 中查看表的 ddl 语句也可以看到字段注释,选中表再点击右下脚“显示右边窗口”选项,然后再点击 ddl 就可以显示了,具体操作步骤如下图所示
修改表注释和字段注释
修改表注释
修改表注释的语法:
alter table 表名 comment ='修改后的表注释';
案例:修改 student 的表注释:
alter table student comment ='学生表 v2';
执行结果如下图所示
修改字段注释
修改表注释的语法:
alter table 表名 modify column 字段名 int comment '注释信息';
案例:修改 student 表中 name 的注释:
alter table student modify column username int comment '学生姓名 v2';
执行结果如下图所示
总结
本文介绍了查看表注释的 sql,以及修改表和字段注释的 sql,同时还介绍了查看字段注释的 5 种方法:3 种命令行操作方式查看,两种基于 navicat 的操作方式查看,其中推荐使用 sql:“show full columns from 表名”查看字段注释,这种查询 sql 简单且也不用担心会误改表结构。
到此这篇关于查询mysql字段注释的5种方法的文章就介绍到这了,更多相关查询mysql字段注释内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!