Skip to content
Advertisement

?? Combine, join, insert in query Access 2007-2010?

I have two tables that I would like to make into one table.

TABLE WASP_COLOR1

TABLE WASP_COLOR2

I’m a novice and I need clear direction on how to obtain these results. (I want the duplicates merged.)

TABLE WASP_COLOR1

I tried the following:

Received error

I tried:

Received 9 rows instead of 5

I tried:

This asks for a parameter value, which is a manual entry and cumbersome

I tried:

Received error

Advertisement

Answer

Perhaps something like this as MS access doesn’t support full outer joins.

What this does is generate two data sets one for wasp_Color1 and those records that match in wasp_Color2 and vice-versa. and then combine’s those results into one data set eliminating the duplicates.

For a better understanding of joins: see https://blog.codinghorror.com/a-visual-explanation-of-sql-joins/

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement