The following two queries gives the same output when run in R studio v_0.96
1)
ab<-sqldf('select a.Family_tree_id, a.parent_name
from test as a, test as b
where a.child_id <> b.parent_id
group by a.Family_tree_id')
2)
cd<-sqldf('select a.Family_tree_id, a.parent_name
from test as a
where a.parent_name NOT IN
(select b.child_name from test as b)')
I don't seem to understand the reason behind the same answer though it seems the first one does an entirely different job than the second one. I am not very experienced in SQL so please bear with me. Is some more information about the dataset is required to answer this?