一句命令,修改了表中的字段的属性,让其只是在创建的时候自动生成创建时间,而每次更新的时候不更新时间。
alter table table_name modify 字段名称 字段类型 [字段属性] [first | after]
–修改字段名称,字段类型,字段属性
alter table L4_info modify L4_ctime timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP comment ‘添加时间’;
今天又修改了一个表:
alter table L4_service_conf modify L4_service_ctime timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP comment ‘业务配置创建时间’;
今天再修改了另外两个表:
alter table L4_LVS_INFO modify ctime timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP comment ‘数据上报时间’;
alter table L4_run_info modify ctime timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP comment ‘数据上报时间’;