Hey guys,
Alright I have a tricky assignment to do in a view that will enable my next program to run MUCH faster and more reliable...
Now I need to list all Items (1 table) and their locations where they are stored (2nd table) in a way that enables 1 to transfer...
Problem is the second table does not contain all the necessary locations as the previous programs would delete a location entry once it hit 0...
So how do I do the following:
Table1:
<PRE>
Item ID
1. X
2. Y
</PRE>
Table 2:
Item ID Location Quantity
X A 5
Y B 3
Desired View:
Item ID Location Quantity
X A 5
X B 0
Y A 0
Y B 3
I realize that simply asking a solution without trying is not the aim of this forum... but I'm really at my wits end and I've tried all kinds of join Statements I know,
I dont think it will be too difficult, but I am just missing something
Would really appreciate a quick solution, thnx guys