I have a SQL query (MS Access) 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 zero (so 4 + null = 4, null + null = 0
).
Any suggestions as to how to accomplish this?