Tuesday, January 7, 2020

What is output of the following query?


SELECT case when null=null then 'Hello' else 'World' end as Result

Output : World

Note: NULL means unknown. hence tow unknown null can't be same or equal.

Featured Post

What is JavaScript? What is the role of JavaScript engine?

  The JavaScript is a Programming language that is used for converting static web pages to interactive and dynamic web pages. A JavaScript e...