Hello,
First of all I would like to thank this forum for saving my life couple times
It contains SO MUCH useful information and examples and I learned a lot from it.
But now I have some task, that I don't know how to solve
I have two files VB/606
example of file 1 : aaa- prefix of each record, (4.4,zd) - key
aaa1234lalalala
aaa1234mmmm
aaa1235kkkkk
aaa3456ktktkt
aaa3456yyyyy
aaa3567kkkkk
aaa3567kkky
example of file2: bbb-prefix of each record ,(4.4,zd) - key
bbb1234nata
bbb2345mmmm
bbb2345jtjtj
bbb3456nnnn
bbb3456hhhh
Output file (VB/606) has to contain only those record, that has the same key in both files. Both files have duplicates
output file :
aaa1234lalala
aaa1234mmmm
bbb1234nata
aaa3456ktktkt
aaa3456yyyyy
bbb3456nnnn
bbb3456hhhh
I tried :
SELECT FROM(IN) TO(OUT) ON(10,1,CH) ON(4,4,zD) -
ALLDUPS
but it didn't dive me desired result.