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
How to add, remove, modify users using sql?
What is not equal in sql?
What will you get by the cursor attribute sql%rowcount?
What are triggers in sql?
What are different types of sql commands?
What are the different types of tables in sql?
How to read/write files from pl/sql?
Explain the components of sql?
what happens if you no create privilege in a database? : Sql dba
What is the use of double ampersand (&&) in sql queries? Give an example
What is primary key secondary key alternate key candidate key?
What is set serveroutput on?
how to get a list of all tables in a database? : Sql dba
What is coalesce in sql?
Can we create index on primary key?