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

后端 未结 11 1598
情歌与酒
情歌与酒 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:32

    The following Query also works and you won't need an update query if that's what you'd prefer:

    IIF(Column Is Null,0,Column)
    

提交回复
热议问题