I have two tables Table a and Table b.
Table b contains subset of Table a. I would like to get all id IDs of Table a which are not in Table b (id is a common column) Tried with this SQL, but its not working select name from table a where name not in
select unique name from table a inner join table b on a.id = b.id; Appreciate your help