It would be really helpful to have an option to exclude from a join. This is intended for “exceptions”. Right now, I have to do a full left join and then a transform to get this. It would be great to be able to do this in one step.
SQL example:
select * from TABLE_1
where Unique_ID is not in
(select Unique_ID from TABLE_2)