How can i get this query to work?
SELECT weather.id, cities.name, weather.date, weather.degree
FROM weather JOIN weather.city_id ON cities.id
WHERE weather.date = '2011-04-30';
ERROR: schema "weather" does not exist.
weather is not schema, it's a table!