I need to do a query to count instances of different values and group them.
SELECT COUNT(*), Type FROM Table GROUP BY Type
The values for Type can be C, V, and I – but I want it to consider any values that are I to be V.
So:
C = C
V = V
I = V
How can I do this in a query?
Compute a field that is equivelent. The below
CASEstatement will take “I”, make it “V” and leave everything else alone.