I would like to know if it is possible, to select certain columns from one table, and another column from a second table, which would relate to a non imported column in the first table. I have to obtain this data from access, and do not know if this is possible with Access, or SQL in general.
Share
Assuming the following table structure:
You could use the following:
In regard to Bill’s post, there are two ways to create JOIN’s within SQL queries:
Implicit – The join is created using the WHERE clause of the query with multiple tables being specified in the FROM clause
Explicit – The join is created using the appropriate type of JOIN clause (INNER, LEFT, RIGHT, FULL)
It is always recommended that you use the explicit JOIN syntax as implicit joins can present problems once the query becomes more complex.
For example, if you later add an explicit join to a query that already uses an implicit join with multiple tables referenced in the FROM clause, the first table referenced in the FROM clause will not be visible to the explicitly joined table.