What is the result, when NULL is compared with NULL?
Answer Posted / 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 |
Post New Answer View All Answers
How to call a javascript function from pl sql?
What is out parameter used for eventhough return statement can also be used in pl/sql?
what is online transaction processing (oltp)? : Sql dba
what are the nonstandard string types? : Sql dba
How to use distinct and count in sql query? Explain
What is schema in sql example?
Is coalesce faster than isnull?
Do stored procedures prevent sql injection?
What are the possible values that can be stored in a boolean data field?
What is on delete set null?
How to use boolean type in select statement?
What is a dirty read sql?
What is difference between pls_integer and integer?
Why do we use sqlite?
Explain alias in sql?