I have a basic Query:
SELECT CurrentStatus, COUNT(CurrentStatus) AS [Count of Status]
FROM dbo.tbl_EWTCases
GROUP BY CurrentStatus
THis works fine but will not produce a total for anything that is showing as Status null, how do i get this to count nulls ?
THanks
SELECT CurrentStatus, COUNT(CurrentStatus) AS [Count of Status]
FROM dbo.tbl_EWTCases
GROUP BY CurrentStatus
THis works fine but will not produce a total for anything that is showing as Status null, how do i get this to count nulls ?
THanks