Where should I post a question about SQL??
Just having trouble understanding how to use a natural join in postgreSQL 9.0.....
I have
SELECT Country.Name, City.Name, City.Population FROM Country, City WHERE Country.Population < 5000;
I just don't understand how to rewrite this using joins?