declare
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 ?
Answer Posted / anil kumar jampana
declare
lowerl number:= 1;
upperl number:= 3;
num varchar2(10);
begin
for i in lowerl..upperl
loop
num:=num||to_char(lowerl);
if i=3 then upperl:=5;
end if;
end loop;
message(num);
end;
some changes in the programme.......
it will result 111
| Is This Answer Correct ? | 13 Yes | 0 No |
Post New Answer View All Answers
What is difference between left and right outer join?
Why does sql need a server?
Define select, insert, create, delete, update, drop keywords
What do you mean by field in sql?
What are stored procedures in mysql?
What has stored procedures in sql and how we can use it?
What is the difference between inner join and left join?
What does <> sql mean?
How bulk collect improves performance?
Explain the components of sql?
What are the three pl sql block types?
What is data type in sql?
Is pl sql a scripting language?
What is graph sql?
What is rtm stands for?