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 / guest
result will be 111
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What is delimiter sql?
How to avoid duplicate records in a query?
What does pl sql stand for?
How do you optimize a stored procedure in sql?
What are the advantages of sql? Explain
How exception is different from error?
Does sql use python?
What are the benefits of pl/sql packages?
What is replication id?
What is relationship? How many types of relationship are there?
how does a local variable is defined using t-sql? : Transact sql
How do I view a table in sql?
How to create an array in pl/sql?
what are the properties and different types of sub-queries? : Sql dba
how to increment dates by 1 in mysql? : Sql dba