What is the result, when NULL is compared with NULL?
Answers were Sorted based on User's Feedback
Answer / kmbkrishnan
if we check a Null value with another Null value as equal,
the result will be false.
Is This Answer Correct ? | 47 Yes | 8 No |
Answer / anil kumar abbireddy
NOT EQUAL AND AGAIN ANSWER IS NULL
Is This Answer Correct ? | 14 Yes | 2 No |
Answer / affan shemle
It is absolutely perfect to compare NULL with NULL. It
yields the result NULL. For those who are saying the result
is FALSE they are taking the answer from IF THEN ELSE. In
all the above answers supported by IF Statement there is a
catch. The result of IF is a Boolean. A Boolean can hold
TRUE, FALSE or NULL. So when you compare NULL vs NULL as a
condition of IF THEN, it returns NULL so the controller goes
to ELSE skipping the IF. Makes sense???
/
AFFAN SHEMLE
Is This Answer Correct ? | 13 Yes | 1 No |
Answer / pavan_1981
i dont know how u can compare a null value with another
null value.i dont find any operator for doing that.
Is This Answer Correct ? | 15 Yes | 6 No |
Answer / talent pool
NULL Is An Unknown Value
So We Couldn't Compare it With Other One.This Is Pure
Correct Answer.
declare @d int
Set @d =null
declare @r int
Set @r=null
if @d=@r
Print 'Hi'
Else
Print 'Summa Vilayadatha'
Is This Answer Correct ? | 8 Yes | 1 No |
Answer / a.jyothsna
One null value is not equal to another null value.
Is This Answer Correct ? | 7 Yes | 1 No |
Answer / kirankumar.vangeti
Null is neither equal to null nor it is not equal to null.
Any comparison to null is evaluated to null.
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / brahma
Null means unknown values, but do not compare both null
values
Is This Answer Correct ? | 2 Yes | 0 No |
Is a foreign key always unique?
how to create temparary sequence
What is the unique index?
What is pivot table in sql?
What is the difference between sql and t sql?
Are left and right joins the same?
Which one of the following is a reason that an INSERT statement might cause an error instead of executing correctly? 1. The INSERT statement was attempting to insert a record into a view that was created from more than one table. 2. The INSERT statement was attempting to insert a record using a combination of constants and values from an existing table. 3. The INSERT statement was attempting to insert a record with a non-NULL value into a table that has that column defined as NULL. 4. The INSERT statement was attempting to insert a record into a table by selecting a record from that same table. 5. The INSERT statement was attempting to insert a record into a view rather than a table.
IN A TABLE HAVE ONE COLUMN PRIMARY KEY..IT WILL NOT ALLOWS NULL VALUES AND DUPLICATE VALUES..INSTEAD OF PRIMARY KEY WHY CANT WE USE UNIQUE AND NOT NULL.THESE TWO ALSO DOESNT ACCEPT NULL VALUES IN NOT NULL AND UNIQUE DOESNT ACCEPT DUPLICATE VALUES? SO WHAT IS THE DIFEERENCE BETWEEN(UNIQUE,NOT NULL) AND PRIMARY KEY??????
How to execute a stored procedure?
what does myisamchk do? : Sql dba
what is the boundary line in varrays?
What is pl sql collection?