SQL Quiz
What will be the result of the query below?
select case when null = null then 'Yup'
else 'Nope' end as Result;
What will be the result of the query below?
select case when null is null then 'Yup'
else 'Nope' end as Result;