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 / kotesh
result is 11111
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
How many postgresql users are there, worldwide?
how to load data files into tables with 'mysqlimport'? : Sql dba
Which table is left in join?
what is the difference between nested subquery and correlated subquery?
Can we use pl sql in sql server?
What are the 3 modes of parameter?
What is query execution plan in sql?
Can we use distinct and group by together?
Explain what is a field in a database and record in a database?
What is primary key secondary key alternate key candidate key?
What are the two characteristics of a primary key?
Can a view be mutating? If yes, then how?
How do you remove duplicate records from a table?
is it possible to pass an object or table to a procedure as an argument?
what is a table in a database ? : Sql dba