Skip to main content

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)

@andreammelde Thanks for sharing this, I will check on this and get back to you. 


Hi @andreammelde  we do not support nested queries directly. But we can achieve what you want. 

 

Do a left join of TABLE_1, TABLE_2 on Unique_ID. Then filter for TABLE_2.Unique_ID =! null