I'm trying to join two tables together as follows.
Table A Table B
Field1 Field1
GO GO
FOREGO
OK GO
I only want to join where the field1 in table A has the exact word as a word in table B, but is not part of another word. So GO and OK GO would join successfully, FOREGO would not be allowed to join.
I have a hunch that i'd use reg_exp to accomplish the join, but I can't figure out how to implement.