declare
n number:=3;
begin
while n < 6 loop
n:=&a;
dbms_output.put_line('in loop value less than 6');
end loop;
dbms_output.put_line('value entered is more than 6 thanq');
end;
my scenario needs to take input from user until he enters some sspecific values in some limit,i tried first this simple code it is not taking value more than one time how can i overcome this