I have an array in ASP that looks like this:
What I want to do is group them together with a count so I would have:
Is this possible? If so how? Using a temp table in SQL?
Code:
3,5,7,7,3,2,3
What I want to do is group them together with a count so I would have:
Code:
Number Count
2 1
3 3
5 1
7 2
Is this possible? If so how? Using a temp table in SQL?