यदि आप शून्य मान समानता पर भी विचार करना चाहते हैं, तो निम्न प्रयास करें
select column1, column2,
case
when column1 is NULL and column2 is NULL then 'true'
when column1=column2 then 'true'
else 'false'
end
from table;
यदि आप शून्य मान समानता पर भी विचार करना चाहते हैं, तो निम्न प्रयास करें
select column1, column2,
case
when column1 is NULL and column2 is NULL then 'true'
when column1=column2 then 'true'
else 'false'
end
from table;