I have two tables with names - Firstname and Surname. If I do the following:
SELECT T1.Surname,
People.Surname,
T1.Forename,
People.Firstname
FROM T1 RIGHT JOIN People ON ((T1.Surname = People.Surname) AND (T1.Forename = People.Firstname))
..it runs alright but says it "can't represent the join in Design View". Is there a way to do two-field joins within QBE? The reason is I want to do updating and appending and I don't want to have to write raw SQL unnecessarily.
SELECT T1.Surname,
People.Surname,
T1.Forename,
People.Firstname
FROM T1 RIGHT JOIN People ON ((T1.Surname = People.Surname) AND (T1.Forename = People.Firstname))
..it runs alright but says it "can't represent the join in Design View". Is there a way to do two-field joins within QBE? The reason is I want to do updating and appending and I don't want to have to write raw SQL unnecessarily.