W
warrenk
I am trying to join 2 tables. I want to join if 'Field B' is in 'Field A'.
ie.
Field A = 'ABCDE'
Field B= 'BC'
....the join would be successful cause 'BC' is in 'ABCDE'. Is this possible?
I tried...
SELECT FROM table1 INNER JOIN table2 ON table1.name like (% table2.
partial_name %);
Keep getting errors.
Any help greatly appreciated!
Warren
ie.
Field A = 'ABCDE'
Field B= 'BC'
....the join would be successful cause 'BC' is in 'ABCDE'. Is this possible?
I tried...
SELECT FROM table1 INNER JOIN table2 ON table1.name like (% table2.
partial_name %);
Keep getting errors.
Any help greatly appreciated!
Warren