Jeśli chcesz również wziąć pod uwagę równość wartości zerowych, wypróbuj następujące
select column1, column2,
case
when column1 is NULL and column2 is NULL then 'true'
when column1=column2 then 'true'
else 'false'
end
from table;