I have a basic select statement i.e.
SELECT
ID, A, B, C
FROM
tblScores
I would like to also return the sum of A,B,C AS 'Total'
However A,B or C can be nulls
I assume i would have to check for nulls and then them together? How do i achieve this?
SELECT
ID, A, B, C
FROM
tblScores
I would like to also return the sum of A,B,C AS 'Total'
However A,B or C can be nulls
I assume i would have to check for nulls and then them together? How do i achieve this?