How to replace blank (null ) values with 0 for all records?

后端 未结 11 1622
情歌与酒
情歌与酒 2020-12-30 03:53

MS Access: How to replace blank (null ) values with 0 for all records?

I guess it has to be done using SQL. I can use Find and Replace to replace 0 with blank, but n

11条回答
  •  我在风中等你
    2020-12-30 04:36

    Go to the query designer window, switch to SQL mode, and try this:

    Update Table Set MyField = 0
    Where MyField Is Null; 
    

提交回复
热议问题