I have query about Group By in Mysql
Looks like my table col1 and col2
1 1
4 6
5 4
2 3
1 9
2 1
3 2
Need to display the output like this
col1&col2 and count(col1&col2)
1 4
2 3
3 2
4 2
5 1
6 1
9 1
can any one suggest to get the above result as output using mysql query?
Thanks in advance