Hi,
I have a table of registered users with the following structure:
tblRegistrant:
Id | Name | Address | Email
-------------------------------
I have two other tables, one containing the users' email preferences, and another containing the users' SMS texting preferences:
tblPreferencesEmail:
Id | RegistrantId | Location | PriceMin | PriceMax
-----------------------------------------------------
tblPreferencesSMS:
Id | RegistrantId | Location | PriceMin | PriceMax
-----------------------------------------------------
I want to join the data, so that I can get the preferences and registrant details of each registrant. Not every registrant will necessarily have an entry in either of the preferences tables.
How can I do this with an SQL JOIN? I'm using ASP and Access.
Any help would be great, thanks...
I have a table of registered users with the following structure:
tblRegistrant:
Id | Name | Address | Email
-------------------------------
I have two other tables, one containing the users' email preferences, and another containing the users' SMS texting preferences:
tblPreferencesEmail:
Id | RegistrantId | Location | PriceMin | PriceMax
-----------------------------------------------------
tblPreferencesSMS:
Id | RegistrantId | Location | PriceMin | PriceMax
-----------------------------------------------------
I want to join the data, so that I can get the preferences and registrant details of each registrant. Not every registrant will necessarily have an entry in either of the preferences tables.
How can I do this with an SQL JOIN? I'm using ASP and Access.
Any help would be great, thanks...