I want to run a query that counts one text value "n" in a table and also counts all other possible text values other than "n" but without grouping them into each individual text value.
For example:
In a table I have 10 "n" values, 10 "a" values, 5 "b" values, and 1 "c" value. i want the query to return a single line showing the count of "n" = 10 and the count of "a" and "b" and "c" = 16. Any suggestions?
n not n
10 16