show/hide this revision's text 3 edited tags
show/hide this revision's text 2 deleted 10 characters in body

I have an a SQL query (MS Access) for which and I need to add two columns, either of which may be null. For instance:

SELECT Column1, Column2, Column3+Column4 AS [Added Values]
FROM Table

where Column3 or Column4 may be null. In this case, I want null to be considered as zero (so 4 + null = 4, null + null = 0).

Any suggestions as to how to accomplish this?

show/hide this revision's text 1

SQL Null set to Zero for adding

I have an SQL query (MS Access) for which I need to add two columns, either of which may be null. For instance:

SELECT Column1, Column2, Column3+Column4 AS [Added Values]
FROM Table

where Column3 or Column4 may be null. In this case, I want null to be considered as zero (so 4 + null = 4, null + null = 0).

Any suggestions as to how to accomplish this?