SQL Null set to Zero for adding - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T05:46:18Z http://stackoverflow.com/feeds/question/137398 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/137398/sql-null-set-to-zero-for-adding 0 SQL Null set to Zero for adding Smashery 2008-09-26T02:26:02Z 2009-08-05T10:26:08Z <p>I have a SQL query (MS Access) and I need to add two columns, either of which may be null. For instance:</p> <pre><code>SELECT Column1, Column2, Column3+Column4 AS [Added Values] FROM Table </code></pre> <p>where Column3 or Column4 may be null. In this case, I want null to be considered zero (so <code>4 + null = 4, null + null = 0</code>).</p> <p>Any suggestions as to how to accomplish this?</p> http://stackoverflow.com/questions/137398/sql-null-set-to-zero-for-adding/137410#137410 7 Answer by Michael Haren for SQL Null set to Zero for adding Michael Haren 2008-09-26T02:29:58Z 2008-09-26T02:39:36Z <p>Since ISNULL in Access is a boolean function (one parameter), use it like this:</p> <pre><code>SELECT Column1, Column2, IIF(ISNULL(Column3),0,Column3) + IIF(ISNULL(Column4),0,Column4) AS [Added Values] FROM Table </code></pre> http://stackoverflow.com/questions/137398/sql-null-set-to-zero-for-adding/137413#137413 3 Answer by jussij for SQL Null set to Zero for adding jussij 2008-09-26T02:30:50Z 2008-09-26T02:30:50Z <p>Use the <strong>ISNULL</strong> replacement command: </p> <pre><code> SELECT Column1, Column2, ISNULL(Column3, 0) + ISNULL(Column4, 0) AS [Added Values]FROM Table </code></pre> http://stackoverflow.com/questions/137398/sql-null-set-to-zero-for-adding/139117#139117 2 Answer by Walter Mitty for SQL Null set to Zero for adding Walter Mitty 2008-09-26T12:30:00Z 2008-09-26T12:30:00Z <p>Use COALESCE.</p> <pre><code>SELECT Column1, Column2, COALESCE(Column3, 0) + COALESCE(Column4, 0) AS [Added Values] FROM Table </code></pre> http://stackoverflow.com/questions/137398/sql-null-set-to-zero-for-adding/140546#140546 2 Answer by CodeSlave for SQL Null set to Zero for adding CodeSlave 2008-09-26T16:28:07Z 2008-09-26T16:28:07Z <p>Even cleaner would be the nz function</p> <pre><code>nz (column3, 0) </code></pre> http://stackoverflow.com/questions/137398/sql-null-set-to-zero-for-adding/143092#143092 0 Answer by Ricardo C for SQL Null set to Zero for adding Ricardo C 2008-09-27T06:00:45Z 2008-09-27T06:00:45Z <p>The Nz() function from VBA can be used in your MS Access query.</p> <p>This function substitute a NULL for the value in the given parameter.</p> <pre><code>SELECT Column1, Column2, Nz(Column3, 0) + Nz(Column4, 0) AS [Added Values] FROM Table </code></pre>