Q
Query Trouble
I have a query with 10 fields. When I Run the query the only records that
show are the ones that have information in all the fields... I want records
to show even if they only have 7, or 8 of the fields.
Example: A query has the fields FIRST, LAST, EMAIL, UNIVERSITY...
- I want a record to show even if IT has FIRST LAST EMAIL but Nothing in
UNiversity...
HE is my SQL:
SELECT [1 Email Contacts].[Email Address], [1 Email Contacts].[First Name],
[1 Email Contacts].[Last Name], [1 Email Contacts].School, [6 RFI].Date, [6
RFI].Requested, [2 Email Campaigns].[Email Campaign Name], [4 Links
Table].[Link Name], [5 Links Clicked].[Click Count], [5 Links Clicked].Date
FROM ([2 Email Campaigns] INNER JOIN [4 Links Table] ON [2 Email
Campaigns].[Email Campaign ID] = [4 Links Table].[Email Campaign ID]) INNER
JOIN (([1 Email Contacts] INNER JOIN [6 RFI] ON [1 Email Contacts].[Email
Address] = [6 RFI].[Email Address]) INNER JOIN [5 Links Clicked] ON [1 Email
Contacts].[Email Address] = [5 Links Clicked].[Email Address]) ON [4 Links
Table].[Link ID] = [5 Links Clicked].[Links ID];
Help please!
show are the ones that have information in all the fields... I want records
to show even if they only have 7, or 8 of the fields.
Example: A query has the fields FIRST, LAST, EMAIL, UNIVERSITY...
- I want a record to show even if IT has FIRST LAST EMAIL but Nothing in
UNiversity...
HE is my SQL:
SELECT [1 Email Contacts].[Email Address], [1 Email Contacts].[First Name],
[1 Email Contacts].[Last Name], [1 Email Contacts].School, [6 RFI].Date, [6
RFI].Requested, [2 Email Campaigns].[Email Campaign Name], [4 Links
Table].[Link Name], [5 Links Clicked].[Click Count], [5 Links Clicked].Date
FROM ([2 Email Campaigns] INNER JOIN [4 Links Table] ON [2 Email
Campaigns].[Email Campaign ID] = [4 Links Table].[Email Campaign ID]) INNER
JOIN (([1 Email Contacts] INNER JOIN [6 RFI] ON [1 Email Contacts].[Email
Address] = [6 RFI].[Email Address]) INNER JOIN [5 Links Clicked] ON [1 Email
Contacts].[Email Address] = [5 Links Clicked].[Email Address]) ON [4 Links
Table].[Link ID] = [5 Links Clicked].[Links ID];
Help please!