If need be, I'll post the whole script I'm working on, but an example of the issue is this:
select 1+2+3+null
This will give me 'Null' as the total. Is there some way to make SQL temporarily recognize nulls as zeroes, or just skip null values altogether when doing the math?
select 1+2+3+null
This will give me 'Null' as the total. Is there some way to make SQL temporarily recognize nulls as zeroes, or just skip null values altogether when doing the math?