For example, if i have over 5000 records and my fields include many different animal breeds and i want to count how many animals there are in each breed, how do I do it? Tried finding for it but couldn't
Any help will be appreciated thanks!!
Code: Select all
SELECT "Breed", COUNT( "Breed" ) FROM "TableName" GROUP BY "Breed"