I have a simple query that doesn't work on the server running MySql. All I want is for it to return a list of people and the number of times they appear in the table:
SELECT Person, Count(Person) as NoOfRecords FROM People;
This only returns one record and yet there are many. What am I missing? Thanks