postmanphat
Technical User
I've written a query that returns counts against a list of 'issues'. However the query only returns the counts if it is > 0. Is there a way of returning null values in a query?
e.g. lets say I have five issues A, B, C, D and E. Issues A, B and D have been picked many times but nobody has issue C or E, so my query results might look like this:
A - 45
B - 23
D - 38
But I want it to look liek this:
A - 45
B - 23
C - 0
D - 38
E - 0
any help would be most appreciated.
Thanks in advance.
e.g. lets say I have five issues A, B, C, D and E. Issues A, B and D have been picked many times but nobody has issue C or E, so my query results might look like this:
A - 45
B - 23
D - 38
But I want it to look liek this:
A - 45
B - 23
C - 0
D - 38
E - 0
any help would be most appreciated.
Thanks in advance.