I have 3 tables like this:
Areas
id city_id area
1 1 mayfield
2 2 cleveland
neighbourhood
id neighbourhood area_id
101 cayahoga 1
102 milan 1
103 downtown 2
Salons
id neighbourhood_id
3 101
4 101
5 102
I am trying to get count of all Salons in all areas.
Like salons in areas (mayfield = 2, cleveland = 1)
Is it possible to do this in 1 query?