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 the location of pre_defined_functions.
What are the types of index in sql?
Can we create table in function?
what is a materialized view? : Sql dba
how can we repair a mysql table? : Sql dba
What do you understand by pl/sql cursors?
Explain how to use transactions efficiently : transact sql
What is the purpose of the sql select top clause?
Which column in the user.triggers data dictionary view shows that the trigger is a pl/sql trigger?
Is nosql relational?
What do you know by pl/sql cursors?
How to use distinct and count in sql query? Explain
Why is pl sql used?
What are the string functions in sql?
What is pessimistic concurrency control? : Transact sql