如何用sql语句将某一列数值中的空值替换为其它值

2025-03-23 14:36:27
推荐回答(1个)
回答1:

update 表名 set 字段名 = '你要的值' where 字段名 is null