I am attempting to run a query that will return all rows with their counts, even if they do not have a count based on the criteria. Right now the query is excluding the rows that have no counts. It currently returns results that look like this:
Site Count
A 5
C 4
D 1
And I would like to get results like this:
Site Count
A 5
B 0
C 4
D 1
E 0
Any thoughts?
Site Count
A 5
C 4
D 1
And I would like to get results like this:
Site Count
A 5
B 0
C 4
D 1
E 0
Any thoughts?
Comment