mysql表与字段注释查看修改

1、 创建表的时候写注释

create table 表名
(
	字段名 int comment '字段的注释'
)comment='表的注释';

2、修改表的注释

alter table 表名 comment '修改后的表的注释';

3、修改字段的注释
alter table 表名 modify column 字段名 字段类型 comment '修改后的字段注释';
4、 查看表注释的方法
–在生成的SQL语句中看
show create table 表名;
–在元数据的表里面看

use information_schema;
select * from TABLES where TABLE_SCHEMA='数据库名' and TABLE_NAME='表名'

5、查看字段注释的方法
–show
show full columns from 表名;
–在元数据的表里面看
select * from COLUMNS where TABLE_SCHEMA='数据库名' and TABLE_NAME='表名'

你可能感兴趣的:(数据库,mysql)