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
How do I order columns in sql?
Write the alter statement to enable all the triggers on the t.students table.
What is the difference between the sql*loader and import utilities? : aql loader
Explain what is a subquery ?
what is data manipulation language? : Sql dba
How does a self join work?
What do you think about pl/sql?
What is a procedure in pl sql?
Why query optimization is needed?
how to add a new column to an existing table in mysql? : Sql dba
What are the types of queries in sql?
what are the differences between get and post methods in form submitting. Give the case where we can use get and we can use post methods? : Sql dba
tell us something about heap tables. : Sql dba
Can two tables have same primary key?
If a cursor is open, how can we find in a pl/sql block?