Hello
Can I do the following?
SELECT *
FROM Table1
WHERE Col1 IN (SELECT Col2,Col3 FROM Table2 WHERE Col4='Y')
I want to filter the results where the Col1 exists in the two-dimension array that the SELECT Col2, Col3... statement returns.
Thanks!