These are 2 separate previous SQL queries among 4 tables.
----------------------------------------------------------------------------------------------------------
select f.day_of_week as fd, l.location_id as ll,f.location_id as fl, l.zip_code, l.city, l.state, f.sky24, c.temperature,c.wind_speed, c.relative_humidity
from weather_location l, weather_forecast f, weather_current c
WHERE l.zip_code = 30346
and l.station_id = c.station_id
and l.location_id = f.location_id
and f.day_of_week = 2
----------------------------------------------------------------------------------------------------------
select l.zip_code,l.city, l.state, f.day_of_week, f.hi_temp_f, f.lo_temp_f, f.hi_temp_c, f.lo_temp_c,
f.sky24, f.uv_indx, f.uv_desc,
to_char( f.sunrise, 'HH:MI PM' ),
to_char( f.sunset, 'HH:MI PM'),
i.image_desc
from weather_forecast f, weather_location l, weather_images i
where l.zip_code = 30346
and l.location_id = f.location_id
and f.sky24 = i.image_id
order by f.day_of_week asc;
----------------------------------------------------------------------------------------------------------
|