So I have a table called members and another table called group.The leader of the group is also a member
To retrieve members,who are not leaders I did the following code
You can try with this scenario.
SELECT r.col1,r.col2 FROM tabel1 r WHERE ROW ( r.col1,r.col2 ) NOT IN( SELECT col1,col2 FROM tabel2 );