lotharious
MIS
I have a Query that gives me the original data
Item 1
Ordered 1
Total 1
Po # 1
And a Table that holds current data
Item
Est
Total
PO
I need to get unmatched data from the Query that is not in the table, and put that info in a seperate table for processing.
The fields match by
Item 1 = Item
Ordered 1 = Est
Total 1 = Total
PO # 1 = PO
The possibilities,
A new Item could be added.
A new PO could be Added, which will have multiple items.
The Ordered could be changed.
One possible solution I have come up with,
Make a temp table to hold the query data, then run 3 seperate queries off that table.
Is this the best way to go about it? Or is there something possibly better?
Item 1
Ordered 1
Total 1
Po # 1
And a Table that holds current data
Item
Est
Total
PO
I need to get unmatched data from the Query that is not in the table, and put that info in a seperate table for processing.
The fields match by
Item 1 = Item
Ordered 1 = Est
Total 1 = Total
PO # 1 = PO
The possibilities,
A new Item could be added.
A new PO could be Added, which will have multiple items.
The Ordered could be changed.
One possible solution I have come up with,
Make a temp table to hold the query data, then run 3 seperate queries off that table.
Is this the best way to go about it? Or is there something possibly better?