Pokud chcete uvažovat i o rovnosti nulových hodnot, zkuste následující
select column1, column2,
case
when column1 is NULL and column2 is NULL then 'true'
when column1=column2 then 'true'
else 'false'
end
from table;
Pokud chcete uvažovat i o rovnosti nulových hodnot, zkuste následující
select column1, column2,
case
when column1 is NULL and column2 is NULL then 'true'
when column1=column2 then 'true'
else 'false'
end
from table;