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 do you modify a table in sql?
How do you update a table in sql?
Can we create table inside stored procedure?
What is union and union all keyword in sql and what are their differences?
What is the importance of sqlcode and sqlerrm?
What is crud sql?
How many tables can a sql database have?
Explain sql data types?
Is trigger a stored procedure?
How can we optimize a sql query?
What does count (*) mean in sql?
What is the difference between distinct and unique in sql?
What does count (*) do in sql?
List different type of expressions with the example.
What is meant by <> in sql?