标签: mysql sql
我在数据库中有一列,其值为null,我想要 该列的所有现有记录都将使用默认值填充 价值为1.
请帮助
答案 0 :(得分:3)
update yourtable set yourcolumn = 1 where yourcolumn is null;