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 |
What is the maximum rows in csv?
how to rename an existing table in mysql? : Sql dba
Hi all, i have a table as follows empid empname mgrid deptid 1 a 3 4 2 b 1 5 3 c 2 3 4 d 3 6 5 e 4 7 i want the output as empname mgrname a c b a c b d c e d
What are the advantages of stored procedure?
Is ms sql traffic encrypted?
What are the different dcl commands in sql?
how to connect oracle in unix prompt?
how i do the database testing of online money transactions between two parties (client and organization). suppose our company makes a website for our client and give a extra feature of online money transaction with there clients then how i test this feature in database testing
What is rank () in sql?
Is record in oracle pl sql?
What are the different ddl commands in sql?
What is rownum and rowid?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)