mysql decimal设置默认值0 无效,设置后自动变为null(navicat设置decimal默认值失效问题)

解决:使用sql语句操作即可

alter table fa_user alter column money set default 0;

亲测有效!

THE END