I have a table where a country field is defined. I want to know how I can develop a query that shows me how many records I have for each country.
Example:
Brazil: 10 records from the USA: 5 records
I have a table where a country field is defined. I want to know how I can develop a query that shows me how many records I have for each country.
Example:
Brazil: 10 records from the USA: 5 records
Half empty but something like
Select pais,count(*) qtd
From tabela
Group by pais