What is the result, when NULL is compared with NULL?
Answer Posted / kuldeep123
DECLARE
v1 NUMBER;
v2 NUMBER;
BEGIN
IF v1 = v2
THEN
DBMS_OUTPUT.put_line ('Null comapred successfully');
ELSE
DBMS_OUTPUT.put_line ('oops u have to use ISNULL opeartor');
END IF;
END;
output : oops u have to use ISNULL opeartor
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How to run pl sql program in mysql?
How to pipe multiline string to isql?
Is pl sql still used?
Does normalization improve performance?
What is a record in a database?
How to get unique records from a table?
Why are aggregate functions called so?
How do you sort in sql?
Does google use sql?
What is the starting oracle error number?
what is clause? : Sql dba
Is there a pl/sql pragma similar to deterministic, but for the scope of one single sql select?
Why sql query is slow?
What is the difference between cluster and non-cluster index?
Can we call stored procedure in function?