What is the result, when NULL is compared with NULL?
Answer Posted / sureka
set serveroutput on;
DECLARE
D INTEGER :=NULL;
E INTEGER :=NULL;
BEGIN
IF (D = E) THEN
dbms_output.put_line('PASS');
ELSIF (D <> E) THEN
dbms_output.put_line('FAIL');
ELSE
dbms_output.put_line('NA');
END IF;
END;
will return NA
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Which tcp/ip port does sql server run on? How can it be changed? : Sql dba
which command using query analyzer will give you the version of sql server and operating system? : Sql dba
How do I order by ascending in sql?
What is pl sql architecture?
What is data abstraction in sql?
what happens if null values are involved in expressions? : Sql dba
Is pl sql still used?
what is single byte over head in oracle..?
Why we use join in sql?
What are the built in functions of sql?
What are the different types of dbmss?
What is indexes?
What is sharding in sql?
How many scalar data types are supported in pl/sql?
What is a full join?