This is my first time ever working with sql and my first task is joining two tables together. I saw a similar example of how its done which worked and tried it for this example but it did not work. I am not sure why I am getting an error
SELECT os.city_id
,os.park_id AS slide_id
from om_slide AS os
where os.city_id = 12
LEFT JOIN ga_park gt ON (os.park_id=gt.park_id)
I know it works up to the where os.city_id = 12. that gives me a result. Just my left statement is not working and I do not know why