I have two tables:

    COUNTRY
    -------------
    id
    name
    ------------
    NEIGHBOUR
    -------------
    id
    id_country1
    id_country2

id_country1 and id_country2 are ids of countries in table COUNTRY that are related to each other. How can I make a select statement so I get names of all countries that are neighbours to one particular country?

Thanks for the help. I really need it.

link|improve this question

67% accept rate
1  
Is this homework? – rene Jan 8 at 21:18
What have you tried? – Sergio Tulentsev Jan 8 at 21:19
No, it's not homework. I'm past that :) – Ales Jan 8 at 21:22
feedback

1 Answer

up vote 1 down vote accepted
SELECT
  COUNTRY.name AS name
FROM
  NEIGHBOUR
  INNER JOIN COUNTRY ON
    NEIGHBOUR.id_country1=COUNTRY.id
    OR NEIGHBOUR.id_country2=COUNTRY.id 
WHERE
    (NEIGHBOUR.id_country1=<your requested id>
    OR NEIGHBOUR.id_country2=<your requested id>)
    AND COUNTRY.id<><your requested id>
link|improve this answer
Thank you. Works great – Ales Jan 8 at 21:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.