Hi!
Trying to write a SQL statement to get the list of number of companies group by Country.
TblCountry
CountryID
CountryName
TblCompany
CompanyID
CountryID
CompanyName
I want to get a table with
CountryName Number of Company
I got this far,
SELECT TblCompany.CountryID, Count(TblCompany.CompanyID)
FROM TblCompany group by CountryID
which gives me the
CountryID number of company.
Can you help??
Thanks millions.
Trying to write a SQL statement to get the list of number of companies group by Country.
TblCountry
CountryID
CountryName
TblCompany
CompanyID
CountryID
CompanyName
I want to get a table with
CountryName Number of Company
I got this far,
SELECT TblCompany.CountryID, Count(TblCompany.CompanyID)
FROM TblCompany group by CountryID
which gives me the
CountryID number of company.
Can you help??
Thanks millions.