My database tables
zones [ id zone zone_manager_email]
cities [ id city zone_id ]
store[id name store_no city_id]
I have these 3 tables, I tried to inner join them , but my code is not working.
SELECT zones.zone, zones.zone_manager_email,store.store_id
FROM zones,store
INNER JOIN zones on zones.id = cities.zone_id
INNER JOIN store ON store.city_id = city.id