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 ?
7 14133declare lowerl number:= 1; upperl number:= 3; num varchar2(10); begin for i into lowerl..upperl loop num:=num||to_char(lowerl); if i=3 then upperl:=5; end loop; message(num); What will be the output ?
3 8791Given two tables Student(SID, Name, Course) and Level(SID, level) write the SQL statement to get the name and SID of the student who are taking course = 3 and at freshman level.
9 15633Post New Oracle SQL PLSQL Interview Questions
What is return in java?
How can we delete a table in sql server?
What do you understand by j2ee?
When to use explode in Hive?
Explain what is Net Asset Value (NAV)?
Which method have you used in proxy?
WHAT IS THE CRITERIA FOR SELECTION OF TIME OF DISSOLUTION AND THE MEDIUM OF DISSOLUTION?
What is linqpad used for?
What is the meaning of busy spin in multi-threading?
what is difference between mail sendig in .net 1.1 and .net 2.0
what types of testing have u done in ur project?and expalin it detail?
If you push the numbers (in order) 1, 3, and 5 onto a stack, which pops out first a) 1 b) 5 c) 3
Can you execute Hadoop dfs Commands from Hive CLI? How?
What is equals method in java?
What are spring jdbc templates used for?