declare
l1 number := null;
l2 number :=null;
begin
if l1=l2 then message('equal');
else
if l1<>l2 then message('not equal');
else
message('else');
end if;
end if;
end;
What will be the output ?
Answer Posted / anil kumar jampana
else
bz, null is an undefined value
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
Is it mandatory for the primary key to be given a value when a new record is inserted?
What is bind reference and how can it be created?
Is it possible to remove child records without removing master table records...the two having pk,fk relationship?
What do you mean by stored procedures?
How many sql statements are used? Define them.
What are tuples in sql?
What does an inner join do?
What is the difference between local and global temporary table?
What are the sql versions?
What is coalesce sql?
How do I kill a query in postgresql?
In a distributed database system, can we execute two queries simultaneously?
What are different types of sql?
What is a system versioned table?
What is the difference between sum and count in sql?