mysql添加注释
Posted happygril3
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql添加注释相关的知识,希望对你有一定的参考价值。
-- 查看字段类型
-- show columns from campaign_distribute
--给表添加注释
-- alter table campaign_distribute comment ‘计划分配表‘
-- 给字段添加注释
-- alter table campaign_distribute modify column campaign_id int comment ‘计划id‘
-- 查看表的注释
-- show full columns from campaign_distribute
以上是关于mysql添加注释的主要内容,如果未能解决你的问题,请参考以下文章