So, in plain English, you need to find:
All records of table member where:
-- country is USA
In Postgresql, you could use a subselect.
If you are using mysql (which doesn't support subselects), you'll have to do something more like this:
All records of table member and country where:
country.country_id matches member.country_id
AND
country.name is USA
SELECT * FROM members, country
WHERE
country.country_id=member.country_id AND
country.name='USA'