Please forgive me if this is a stupid question but until this point all of my dataflows have been in mySQL or Redshift and I am trying to utilize the Magic ETL where possible looking for performance gains. Common scenario is to get a list of accounts and use that in a where clause to exclude those records from a result.
Example - select * from data where account not in(select account from exclusion_accounts)
This needs to be a dynamic list because the values are always changing so I cannot create a filter by with each value.
Can this be accomplished in Magic ETL?
Thank you.