So in Access I see three types of join properties.
1 Only include rows where joined fields are equal.
2 Include ALL rows from Table1 and only those from Table2 that equal Table1
3 Include ALL rows from Table2 and only those from Table1 that equal Table2
Scenario: I have two tables; table1.column1 with data like 1 stored as NUMBER; table2.column2 with data like 001 stored as TEXT.
I have a query that runs Qtable2: val(table2.column2)
Then I make another query that selects table1.column1 and query.Qtable2.
Problem: When I use join type 1, it completes the query just fine. When I use join type 2, I get a data type mismatch error.
Thank you for your time.