SQL join over five tables - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T00:17:20Z http://stackoverflow.com/feeds/question/1070032 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1070032/sql-join-over-five-tables 1 SQL join over five tables Pickledegg 2009-07-01T16:12:47Z 2009-07-02T09:13:15Z <p>I have five tables:</p> <pre> <b>models</b>: id, name, specification <b>models_networks</b>: id, model_id, network_id <b>networks</b>: id, name, description <b>countries_networks</b>: id, country_id, network_id <b>countries</b>: id, countryName, etc, etc </pre> <ul> <li>the <code>models</code> table is connected to the <code>networks</code> table via <code>models_networks</code> with a many to many relation.</li> <li>the <code>networks</code> table is connected to the <code>countries</code> table via <code>countries_networks</code> with a many to many relation</li> </ul> <p>I need to do the following query, but I'm stuck:</p> <blockquote> <p>Select all the models that will work in a specific country.</p> </blockquote> <p>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.</p> <p>If I've made myself clear, can someone help with the JOIN query please? I've only ever gone as far as joining two tables before. Thanks.</p> http://stackoverflow.com/questions/1070032/sql-join-over-five-tables/1070046#1070046 2 Answer by Quassnoi for SQL join over five tables Quassnoi 2009-07-01T16:17:38Z 2009-07-01T16:17:38Z <pre><code>SELECT m.id FROM model m WHERE EXISTS ( SELECT NULL FROM model_networks mn JOIN countries_networks cn ON cn.network_id = mn.network_id AND cn.country_id = @code_of_france WHERE mn.model_id = m.id ) </code></pre> <p>This is efficient since it returns a model right that moment it finds the first suitable network.</p> <p>Make sure you have the following <code>UNIQUE</code> indexes:</p> <pre><code>model_networks (model_id, network_id) country_network (country_id, network_id) </code></pre> http://stackoverflow.com/questions/1070032/sql-join-over-five-tables/1070055#1070055 1 Answer by Cfreak for SQL join over five tables Cfreak 2009-07-01T16:18:58Z 2009-07-01T16:18:58Z <pre><code>SELECT models.id, models.name, models.specifications JOIN models_networks ON models.id=models_networks.model_id WHERE models_networks.networks_id IN (1,2) </code></pre> <p>(replace 1,2 with your network ids )</p> <p>Doesn't look like you need two joins if you just want the models. You only need more joins if you don't know the network ids or if you need columns out of the other tables. The syntax for that is the same though. You just start with <code>JOIN &lt;table&gt; ON &lt;field&gt;=&lt;field&gt;</code> before the WHERE statement</p> http://stackoverflow.com/questions/1070032/sql-join-over-five-tables/1070058#1070058 2 Answer by pjp for SQL join over five tables pjp 2009-07-01T16:19:05Z 2009-07-01T16:19:05Z <p>Something along the lines of this should work...</p> <pre><code>SELECT M.Name As ModelName FROM Countries C INNER JOIN Countries_Networks CN ON C.CountryId = CN.CountryId INNER JOIN Networks N ON CN.NetworkId = N.NetworkId INNER JOIN ModelNetworks MN ON MN.NetworkId = N.NetworkId INNER JOIN Model M ON M.ModelId = MN.ModelId WHERE C.CountryName = 'FRANCE' </code></pre> http://stackoverflow.com/questions/1070032/sql-join-over-five-tables/1070059#1070059 1 Answer by Tomalak for SQL join over five tables Tomalak 2009-07-01T16:19:11Z 2009-07-01T16:19:11Z <pre><code>SELECT m.name AS model_name, c.countryName, COUNT(*) AS network_count FROM models AS m INNER JOIN models_networks AS mn ON mn.model_id = m.id INNER JOIN networks AS n ON n.id = mn.network_id INNER JOIN countries_networks AS cn ON cn.network_id = n.id INNER JOIN countries AS c ON c.id = cn.country_id WHERE c.countryName = 'France' GROUP BY m.name, c.countryName </code></pre> http://stackoverflow.com/questions/1070032/sql-join-over-five-tables/1070066#1070066 1 Answer by svinto for SQL join over five tables svinto 2009-07-01T16:20:56Z 2009-07-01T16:20:56Z <pre><code>select models.id, models.name, models.specification from models inner join models_networks on models.id = models_network.network_id inner join countries_networks on models_network.network_id = countries_networks.network_id where countries_networks.countryName = 'France' </code></pre>