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 do I run sql?
How to disable a trigger name update_salary?
Where do we use pl sql?
Does asenumerable execute the query?
what is a tablespace? : Sql dba
what are the t string functions available in tsql? : Transact sql
What do you mean by dbms? What are its different types?
what is error ora-03113: end-of-file on communication channel?
What is the max nvarchar size?
How do you take the union of two tables in sql?
Is sql easier than java?
What are sql indexes?
What are the basic sql commands?
What is exit statement?
What is pls_integer in pl sql?