Opening Hours :7AM to 9PM
WHILE condition LOOP sequence_of_statements END LOOP;
DECLARE a number(2) := 1; BEGIN WHILE a <= 10 LOOP dbms_output.put_line('value of a: ' || a); a := a + 1; END LOOP; END; /