show/hide this revision's text 4 format, title, grammar

SQL Join Helpjoin over five tables

I have five tables:

models:             id, name, specification
models_networks:    id, model_id, network_id
networks:           id, name, description
countries_networks: id, country_id, network_id
countries:          id, countryName, etc, etc

The

  • the models table is connected to the networks table via models_networksvia manyToMany The with a many to many relation.
  • the networks table is connected to the countries table via countries_networksvia manyToMany with a many to many relation

I need to do the following query, but I'm stuck:

SELECT

Select all the models that will work in a specific country.

e.g.

e.g.: say France has two networks. PigNetwork and CowNetwork. I want to get all the models that work on PigNetwork or CowNetwork, basically any that work in that country one way or the other.

If I've made myself clear, can someone help with the JOIN query please? I've only ever gone as far as joining 2 two tables before. Thanks.

show/hide this revision's text 3 edited tags
show/hide this revision's text 2 added 20 characters in body

I have five tables:

models: id, name, specification
models_networks:     id, model_id, network_id
networks: id, name, description
countries_networks: id, country_id, network_id
countries: id, countryName, etc, etc

The models table is connected to the networks table via models_networks via manyToMany The networks table is connected to the countries table via countries_networks via manyToMany

I need to do the following query but I'm stuck:

SELECT all the models that will work in a specific country.

e.g. say France has two networks. PigNetwork and CowNetwork. I want to get all the models that work on PigNetwork or CowNetwork, basically any that work in that country one way or the other.

If I've made myself clear, can someone help with the JOIN query please? I've only ever gone as far as joining 2 tables before. Thanks.

show/hide this revision's text 1