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
What is sql clause?
what is top in tsql? : Transact sql
What is an alias command?
Explain aggregate functions are available there in sql?
Enlist the advantages of sql.
What is sql procedures and functions?
Can we join two tables without common column?
What is sql integrity?
what does the t-sql command ident_current does? : Transact sql
What do you think about pl/sql?
What is %s in sql?
Explain what is a column in a table?
what is not null constraint? : Sql dba
Is mariadb a nosql database?
how to do backup entire database? : Transact sql