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
What is scalar function?
what are tables and fields? : Sql dba
What is a primary key sql?
What do you mean by dbms? What are its different types?
What is sql partition function?
explain primary keys and auto increment fields in mysql : sql dba
When sql appeared?
What is date functions?
How to connect a sql*plus session to an oracle server?
Mention what are different methods to trace the pl/sql code?
What version is sql?
How can we link a sql database to an existing android app?
Why is normalization important?
What is normalization in sql?
explain advantages of innodb over myisam. : Sql dba