So far I have this as my SQL Query:
SELECT value, count(value) over () as TOTAL from listofvalues GROUP BY value
The result look like that:
value|TOTAL
IS18-0001| 6
IS18-0002| 6
IS18-0003| 6
IS18-0004| 6
IS18-0005| 6
IS18-0006| 6
What I want the result to look like would be more like that:
value|TOTAL
IS18-0001| 6
IS18-0002|
IS18-0003|
IS18-0004|
IS18-0005|
IS18-0006|
Basically I want to LIMIT the total to 1, but can't seems to find a solution, any idea? Is that even possible?