如何更新数据库中为Null的数据

2024-12-04 16:41:45
推荐回答(4个)
回答(1):

update 表名 set 字段 = null where id=1 --把字段数据变成null

update 表名 set 字段 = 值 where 字段 is null --改写字段为null数据

update 表名 set 字段 = null where 字段 is not null --把字段不为null变成null

回答(2):

就是个sql问题,自己写个试试

update 表名 set 字段 = null where id=1 --把字段数据变成null

update 表名 set 字段 = 值 where 字段 is null --改写字段为null数据

update 表名 set 字段 = null where 字段 is not null --把字段不为null变成null 自己去试试吧

回答(3):

update “表名” set “列名”=“值” where “列名” is null
你看行不行
注:“表名” 只是个代称 例子就是 实例数据库中的 Northwind 中 Products表
如:update products set name='no name' where name is null
就是把products表中的name 列下有空值的改为字符串no name

上面的还是比较全的 此回答只适合菜鸟,嘿嘿。希望对你有所帮助

回答(4):

update NBDH_Input set fAlready=isnull(fAlready,0.00)+@fAlready,我是这么更新为空的数据的