Mysql 修改字段默认值问题

临下班前,测试测出所有的返回报文中有一个版本号的值没有上送,最后定位是由于数据库配置表里版本号是空。

这应该属于前辈们留下的bug了....

首先试了下

ALTER TABLE newftp alter column command_version varchar(10) not NULL default 'v1.0'

报错了:[Err] 1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'varchar(10) not NULL  default 'v1.0'' at line 1;

之后又从网上搜了:

ALTER TABLE newftp add DEFAULT ('v1.0') for command_version WITH VALUES,然而也是执行失败:

[Err] 1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'DEFAULT ('v1.0') for command_version WITH VALUES' at line 1

后来用navcat工具修改字段默认值,然后点SQL预览,

拿出一条新SQL:

ALTER TABLE `newftp` MODIFY COLUMN `command_version` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT "v1.0" COMMENT '版本号'

后来我把之前的alter换成了modify

ALTER TABLE newftp MODIFY column command_version varchar(10) not NULL default 'v1.0'

执行成功了...

转载于:https://www.cnblogs.com/twelve-eleven/p/6961312.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值