美文网首页
MySql:使用MySqlWorkbench修改列的默认值为''

MySql:使用MySqlWorkbench修改列的默认值为''

作者: 真诚的狗子 | 来源:发表于2017-05-10 19:18 被阅读0次

如题,直接在Workbench中修改了默认值为'',点击Apply,Output如下:

19:09:09|Apply changes to t_users|No changes detected

没有效果,看来只能用sql语句来操作了。

解决方案:执行sql语句:alter table learn.t_users alter column history set default '';

19:14:21| alter table learn.t_users alter column history set default '' |0 row(s) affected Records: 0  Duplicates: 0  Warnings: 0 0.079 sec

成功!

相关文章

网友评论

      本文标题:MySql:使用MySqlWorkbench修改列的默认值为''

      本文链接:https://www.haomeiwen.com/subject/xuggtxtx.html