在MySQL数据库中, 字段或列的注释是用属性comment来添加. 创建新表的脚本中, 可在字段定义脚本中添加comment属性来添加注释. 示例代码如下: create table test( id int not null default 0 comment '用户id' ) 如果是已经建好的表, 也可以用修改字段的命令,然后加上comment属性定义,就可以添加上注释了. 示例代码如下: alter table test change column id id int not null…
-- 查看字段类型-- 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_distr…
给表添加注释 comment on table MW_SYS.MWT_OM_OBJ1 is '业务类型的对象实例.'; 给表中的列添加注释 comment on column MW_SYS.MWT_OM_OBJ1.OBJ_ID is '对象的唯一标示符.'; comment on column MW_SYS.MWT_OM_OBJ1.OBJ_LOCALID is '对象本地标识.'; comment on column MW_SYS.MWT_OM_OBJ1.OBJ_CAPTION is…