adspace
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 escape special characters in sql statements? : Sql dba
what is sql server agent? : Sql dba
How do I remove duplicates in two columns?
What is the best sql course?
what are aggregate and scalar functions? : Sql dba
Is primary key clustered index?
what is bcp? When does it used? : Sql dba
What is the current version of postgresql?
how many tables will create when we create table, what are they? : Sql dba
Can delete statement be rollbacked?
Can we use distinct and group by together?
how to start mysql server? : Sql dba
If a cursor is open, how can we find in a pl/sql block?
how to use regular expression in pattern match conditions? : Sql dba
Can we rollback truncate?