Hello all,
I have a small problem I need help with
I have a table called tbl_down, this table has 2 fields
ID, fldCOUNTRY
Now I want to select unique countries and how many times they occur.
I'm using this query:
How can I get the sum of occurrences for each country ?
"Taxes are the fees we pay for civilized society" G.W.
I have a small problem I need help with
I have a table called tbl_down, this table has 2 fields
ID, fldCOUNTRY
Now I want to select unique countries and how many times they occur.
I'm using this query:
Code:
SELECT fldCOUNTRY FROM TBL_DOWN GROUP BY fldCOUNTRY
How can I get the sum of occurrences for each country ?
"Taxes are the fees we pay for civilized society" G.W.