S
Shailesh Patel
Dear:
In the following query, Query5 is two table join query.
And when I try to join with 3rd table (Contacts), it returns only one record
instead of multiple records from Contacts table. I tried to change INNER to
LEFT or RIGHT but returns only one record instead of more match with that
criteria.
Any comment/help is appreciated.
SELECT Contacts.[First]+' '+Contacts.[Last] AS Expr1, Query5.*
FROM Query5 INNER JOIN Contacts ON Query5.ProspectId = Contacts.ProspectID
WHERE (((Query5.Company) Like 'kuhl*') AND ((Contacts.Title) Like 'ceo*'));
Thank you in advance.
Shailesh
In the following query, Query5 is two table join query.
And when I try to join with 3rd table (Contacts), it returns only one record
instead of multiple records from Contacts table. I tried to change INNER to
LEFT or RIGHT but returns only one record instead of more match with that
criteria.
Any comment/help is appreciated.
SELECT Contacts.[First]+' '+Contacts.[Last] AS Expr1, Query5.*
FROM Query5 INNER JOIN Contacts ON Query5.ProspectId = Contacts.ProspectID
WHERE (((Query5.Company) Like 'kuhl*') AND ((Contacts.Title) Like 'ceo*'));
Thank you in advance.
Shailesh