declare x number := 0; begin loop dbms_output.put_line('inside loop : x = ' || x); x := x + 1; if x > 3 then continue; end if; dbms_output.put_line('inside loop, after continue : x = ' || x); if x = 5 then exit; end if; end loop; dbms_output.put_line('after loop : x = ' || x); end;
@ziauddin4513 Жыл бұрын
Did not get and sorry to say Your way of understanding is not correct at all.
@UsmanKhan-wc1bs Жыл бұрын
bro clear your basic concepts and then you understand. he is understanding to us in very nice way