M
matt hallam
I have two tables and I want to compare the name fields within them:
table: allusers
Name - in the format LastName FirstName
Email
table: leavers:
Last Name
LeaverDate
I want to write a query such that I can get Name, Email & LeaverDate in
table, but I can't work out the necessary query to "link" the tables. I've
been tryinbg stuff like:
SELECT allusers.Name, leavers.LeaverDate FROM allusers, leavers WHERE Name
= Any (SELECT leavers.[Last Name] FROM leavers);
but doesn't like it. Is it possible to do this sort of query? Or will I
needs nested recordsets?
cheers in advance
Matthew
table: allusers
Name - in the format LastName FirstName
table: leavers:
Last Name
LeaverDate
I want to write a query such that I can get Name, Email & LeaverDate in
table, but I can't work out the necessary query to "link" the tables. I've
been tryinbg stuff like:
SELECT allusers.Name, leavers.LeaverDate FROM allusers, leavers WHERE Name
= Any (SELECT leavers.[Last Name] FROM leavers);
but doesn't like it. Is it possible to do this sort of query? Or will I
needs nested recordsets?
cheers in advance
Matthew