Hello,
I am using SQL and in-db tools for my analysis. I can't take my data outside DB as it is huge. I want to filter out my MAIN file from another file which has an exclusion list. I know the SQL query but I don't understand how to do this in alteryx.
Ideally I need the following in middle of my workflow in Alteryx:
Select * from ABC
where symbol not in (select symbol from XYZ)
I need to do this using only in-db tools. I know I can use the exact SQL query initially when I retrieve the data but is there any way to do it in middle of my workflow in-db?