My SQL statement is a little different. Lets say in Table1 you have 2 records that match Table2 then you may want 2 results not 4.
SELECT DISTINCTROW Table2.Field3
FROM Table1 INNER JOIN Table2 ON (Table1.Field1 = Table2.Field1) AND (Table1.Field2 = Table2.Field2);
Good Luck
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.