Hello,
I was able to convert this SQL query:
SELECT *
FROM TableA A
JOIN TableB B
ON (A.One = B.Alpha OR A.One = B.Beta)
...by unioning the inner join results of joins on A.One = B.Alpha with A.One = B.Beta
I now need to add one more logical conditioning statement in SQL:
SELECT *
FROM TableA A
JOIN TableB B
ON [(A.One = B.Alpha OR A.One = B.Beta)
AND (B.Gamma = A.Two OR B.Gamma = A.Three)]
But I'm having trouble determining the correct order of tools used in Alteryx.
Any suggestions?
Thanks.