I have two tables,
A segment file
INVNO SEGNO COLUMNS
00001 1 Blah
00001 2 Blah
00001 3 Blah
00002 1 Blah
00002 2 Blah
00003 1 Blah
and a details file
INVNO SEGNO COLUMNS
00001 1 Blah
00001 2 Blah
00001 2 Blah
00002 1 Blah
00003 1 Blah
00003 1 Blah
So, I need everything from both tables. What is the best practice here? My initial thought is to someone do a join on a concatenated column (concatenating INVONO & SEGNO) in both tables. I don't know how to do that but that would be my best guess. Any and all help is appreciated.