I have following mysql database tables:
cities
states
countries
with
members
samajs (a group of people internationally)
and I want to create a query for my dashboard page which will have following results:
Country Members Samajs Total (table header)
Country1 7 5 16 (country row with total members, samajs and total count)
state1 5 2 7 (state row with total members, samajs and total count)
city1 3 1 4 (all cities in that state, city row with total members, samajs and total count)
city2 2 0 2
state2 2 1 3
Country2 3 2 5 (country row with total members, samajs and total count)
...and vice versa....
Here, members table will have country_id, state_id and city_id as foreign key
samajs table will also have country_id, state_id and city_id as foreign key
Any idea, what will be query for same?
Thanks !!