mysql查看字段注释的方法:执行【show full columns from test】命令即可查看。如果我们要查看数据表的注释,可以执行【show create table test】命令。
具体方法如下:
(学习视频推荐:mysql视频教程)
创建表的时候写注释
create table test1 ( field_name int comment '字段的注释' )comment='表的注释';
修改表的注释
alter table test1 comment '修改后的表的注释';
修改字段的注释
alter table test1 modify column field_name int comment '修改后的字段注释'; --注意:字段名和字段类型照写就行
(相关教程推荐:mysql教程)
查看表注释的方法
--在生成的SQL语句中看 show create table test1;
--在元数据的表里面看 use information_schema; select * from TABLES where TABLE_SCHEMA='my_db' and TABLE_NAME='test1' \G
查看字段注释的方法
--show show full columns from test1; --在元数据的表里面看 select * from COLUMNS where TABLE_SCHEMA='my_db' and TABLE_NAME='test1' \G
以上是mysql如何查看字段注释的详细内容。更多信息请关注PHP中文网其他相关文章!