Hello,
can anybody give me an answer to this:
I have two Tab seperated files FILE1.TSV (Field1, Field2, ...) and FILE2.TSV (Field1, Field2). Field1 in File 1 is a Number and
Related to this number a Text in File 2 should be selected. So I want to relate the two Files in one SELECT Statement like
SELECT No, Text
FROM FILE1.TSV,FILE2.TSV
WHERE FILE1.No = FILE2.No
Thanks for help!