How to specify a specific join in a query?
I have three tables: members, membersupdate, countries. The tables members and membersupdate are have the same fields and are connecter throug an inner join on membersid.
Both tables have a field which contains a code for the country members live in. There is code table called countries which contains the code and the countryname. Both table (members and membersupdate) are connected with the table countries through an inner join on countrycode. So there are three joins.
Now I want to make a query which contains the three tables that give a calculated result like:
member & “used tot live in “ & countryname & “but now in “ & countryname. The first field countryname should give the result of the join with members and the second of the join with membersupdate.
How can I realize this?
I have three tables: members, membersupdate, countries. The tables members and membersupdate are have the same fields and are connecter throug an inner join on membersid.
Both tables have a field which contains a code for the country members live in. There is code table called countries which contains the code and the countryname. Both table (members and membersupdate) are connected with the table countries through an inner join on countrycode. So there are three joins.
Now I want to make a query which contains the three tables that give a calculated result like:
member & “used tot live in “ & countryname & “but now in “ & countryname. The first field countryname should give the result of the join with members and the second of the join with membersupdate.
How can I realize this?