添加字段: alter table `user_movement_log`Add column GatewayId int not null default 0 AFTER `Regionid` (在哪个字段后面添加) MySQL concat函数可以连接一个或者多个字符串,如select concat('10');结果:10 select concat('11','22','33');结果112233MySQL的concat函数在连接字符串的时候,只要其中一个是NULL,那么将返回NULLse…