mysql的基本语法操作(建字段,改字段。删字段)
珙桐454 次
ALTER TABLE — 更改表属性
添加字段 :
alter table `user_movement_log`
Add column GatewayId int not null default 0 AFTER `Regionid` (在哪个字段后面添加)
删除字段 :
alter table `user_movement_log` drop column Gatewayid
调整字段顺序:
ALTER TABLE `user_movement_log` CHANGE `GatewayId` `GatewayId ` int not null default 0 AFTER
评论 | 0 条评论