First I want to say hello to everyone. This is my first questions and I did not see it posted anywhere else.
How do I create a query to import unique items based off another table in access.
EXAMPLE
TABLE 1 : ITEM# QTY TABLE 2: ITEM# QTY
_________1 ____5 ___________1 ____2
_________2 ____5 ___________2 ____2
_________3 ____5 ___________3 ____2
___________________________4 ____5
___________________________5 ____5
___________________________6 ____5
I would like the query to import only the unique items from TABLE 2 to make TABLE 1 look like:
TABLE 1 : ITEM# QTY
_________1 _____5
_________2 _____5
_________3 _____5
_________4 _____5
_________5 _____5
_________6 _____5
Thank you in advance!