I have a table as below
IDnumber ProcessID
1 21
2 22
3 21
4 21
5 22
6 22
7 22
8 22
9 23
Now I have a query as below
select count(*) filter (where ProcessID IN (21, 22)) FROM table
This query will give output = 8 which is correct.
However, I need a query to find the count of only that column which is highest between the provided list of columns in where condition.
In the above example '22' occurs 5 times hence it is higher than '21' which occurs 3 times.
Is there any function/logic to do this?
Thanks
you can try like