I created a query involving two tables from two different databases. The following are my tables:
Database 1 Database 2
Date Line Production Date Line Scrapped_Qty.
8/14 A 1000 8/14 A 100
8/14 B 900 8/14 B 75
8/15 A 1100
8/15 B 950
I created a simple query linking the date and time and I got:
Date Line Production Scrapped_Qty.
8/14 A 1000 100
8/14 B 900 75
I am trying to get the following output:
Date Line Production Scrapped_Qty.
8/14 A 1000 100
8/14 B 900 75
8/14 A 1100 0
8/14 B 950 0
One obvious way is to have zero entries in database 2. I want to aviod going down this route. Any suggestions will be appreciated.
Database 1 Database 2
Date Line Production Date Line Scrapped_Qty.
8/14 A 1000 8/14 A 100
8/14 B 900 8/14 B 75
8/15 A 1100
8/15 B 950
I created a simple query linking the date and time and I got:
Date Line Production Scrapped_Qty.
8/14 A 1000 100
8/14 B 900 75
I am trying to get the following output:
Date Line Production Scrapped_Qty.
8/14 A 1000 100
8/14 B 900 75
8/14 A 1100 0
8/14 B 950 0
One obvious way is to have zero entries in database 2. I want to aviod going down this route. Any suggestions will be appreciated.