You can join two tables based on a function. In the attached database I join two tables with a function I created name Match. The query looks like
SELECT Table1.ID, Table1.F1, Table2.ID, Table2.F1
FROM Table1 INNER JOIN Table2 ON Match( Table1.F1,Table2.F1);
Note that because of the function...