I'm in a quandry and hope that someone out there can help!!
A query from a single table in the listbox rowsource property is relatively straight forward. However I cantwork out how to query from two tables at the same time.
eg:
SIMPLE QUERY (no problem):
SELECT [Table1].[Field1], [Table1].[Field2]FROM [Table1]
This will populate a 2-column listbox.
COMPOUND QUERY (BIG PROBLEM!!!!!):
I want to SELECT Field1 from Table 1 and SELECT Field3 from Table 3
I keep seeing fluent use of JOIN, INNER JOIN, UNION etc but I don't understand how they might be used in this context.
Can anyone help?
John
A query from a single table in the listbox rowsource property is relatively straight forward. However I cantwork out how to query from two tables at the same time.
eg:
SIMPLE QUERY (no problem):
SELECT [Table1].[Field1], [Table1].[Field2]FROM [Table1]
This will populate a 2-column listbox.
COMPOUND QUERY (BIG PROBLEM!!!!!):
I want to SELECT Field1 from Table 1 and SELECT Field3 from Table 3
I keep seeing fluent use of JOIN, INNER JOIN, UNION etc but I don't understand how they might be used in this context.
Can anyone help?
John