Hello Folks, I'm trying to denormalize two data tables . The sets are as follows
CompId CompDiv
100 A
100 B
101 X
101 Y
102 Z
AND
CompId OrderType Qty
100 OfficeSupp 88
101 Computer 5
My output should look like the following ;
CompId CompDiv OrderType Qty
100 A OfficeSupp 88
100 B OfficeSupp 88
101 X Computer 5
101 Y Computer 5
101 Z Computer 5
Any help is much appreciated
Thanks
leo
CompId CompDiv
100 A
100 B
101 X
101 Y
102 Z
AND
CompId OrderType Qty
100 OfficeSupp 88
101 Computer 5
My output should look like the following ;
CompId CompDiv OrderType Qty
100 A OfficeSupp 88
100 B OfficeSupp 88
101 X Computer 5
101 Y Computer 5
101 Z Computer 5
Any help is much appreciated
Thanks
leo