I have a table which stores users and votes. It looks something like this:
id | user | vote
1-----a-----3
1-----b-----5
1-----c-----1
2-----a-----4
2-----b-----5
3-----b-----2
etc, etc
If I want to query the table for the ID with the most votes (i.e. how many times a table value occurs), how would I do that?