I have two tables
Code:
ID Job# Piece Mark Description Quantity Length
1 2847 10AP1 W10X47 10 12
2 2847 10AP2 W11X35 8 10
Code:
ID Major Piece Mark Description Quantity Length
1 1 a10 pl2x2 5 4
2 1 b10 pl2x2 4 4
3 2 a10 pl2x2 6 3
4 2 b10 pl2x2 2 3
The result I'm looking for is something along the lines of:
Code:
Job# Piece Mark Description Quantity Length
2847 10AP1 W10X47 10 12
2847 a10 pl2x2 5 4
2847 b10 pl2x2 4 4
2847 10AP2 W11X35 8 10
2847 a10 pl2x2 6 3
2847 b10 pl2x2 2 3
How can I achieve this?