SELECT *
FROM TABLE_X
WHERE 'Value' IN (SELECT * FROM TABLE_Y)
What expression can I use instead of 'Value' so that the WHERE clause where always return true?
I am trying to do something like:
WHERE (SELECT field FROM TABLE_Y) LIKE '%Value%'