Hi all,
I've got 2 tables (say t1, and t2), and this works fine and as expected:
SELECT * from t1, t2 WHERE t1.columnX = t1.columnY
However, I would like to do the following:
SELECT * from t1, t2 WHERE t1.columnX LIKE '%t1.columnY%'
I believe as written, t1.columnY is used as a string, and thus not what I want (want wildcards prepended/appended to column value).
Is there a way to make this wildcard search work?
Many thanks in advance.
Cheers,
--Greg