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.