mysql 新增多列写法

一灰灰blogDBMysqlMysql约 73 字小于 1 分钟

记录下同时新增多列的sql写法

alter table table_name add (amount decimal(20,8) NOT NULL DEFAULT '0.00000000' COMMENT '数量' , price decimal(20,8) NOT NULL DEFAULT '0.00000000' COMMENT '价格');

用圆括号包含起来即可

Loading...