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


Please Help Members By Posting Answers For Below Questions

what is the difference between inner and outer join? Explain with example. : Sql dba

538


can sql servers linked to other servers like oracle? : Sql dba

536


What is package in pl sql?

568


What are secondary keys?

548


How do I quit sql?

480






how to use 'mysql' to run sql statements? : Sql dba

527


What are crud methods?

542


how do you login to mysql using unix shell? : Sql dba

555


Can you upgrade sql express to full sql?

504


How many developers work on postgresql?

553


How do I debug a stored procedure?

617


What is a schema sql?

520


What is union?

643


What is the difference between nvl function, ifnull function, and isnull function?

581


what is the difference between char_length and length? : Sql dba

561