Is it possible to create an SQL expression that joins the two tables together based on the right five characters in one table and the full field in the other table? I realize I could accomplish this by adding a query to the process, but I don't want to create another query. Is it possible?
ex.
SELECT fk1.[feeder key], fk2.[feeder], fk2.[mod]
FROM fk1 LEFT JOIN fk2 ON fk1.right([feeder key],5) = fk2.feeder;
Thanks in advance!
ex.
SELECT fk1.[feeder key], fk2.[feeder], fk2.[mod]
FROM fk1 LEFT JOIN fk2 ON fk1.right([feeder key],5) = fk2.feeder;
Thanks in advance!