Suppose we have a list A
and an identical list B
except that B
has one element removed. Find that missing element.
I would think that one possible approach would be the following:
select a.element from
a left join b
on a.element = b.element
where b.element is null
Would that be correct?