Is this possible? I wish to sum the column, round it, and also account for null values in a single statement, something like
select isnull(round(sum(column),0) as Total from table where blah = blah
The statement above does not work, obviously, but what will?