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
how to write date and time literals? : Sql dba
Is pl sql and postgresql same?
What are few of the schema objects that are created using PL/SQL?
What are the datatypes available in pl/sql ?
What is on delete set null?
how to fetch common records from two tables? : Sql dba
What are sql indexes?
What are the uses of merge?
Can a varchar be a primary key?
Which is better join or inner query?
Write a query to find the names of users that begin with "um" in sql?
What trigger means?
what is 'mysqlcheck'? : Sql dba
Is sqlexception checked or unchecked?
Can a table have no primary key?