Monday, 15 February 2016

WHILE LOOP EXAMPLE:

DECLARE
I NUMBER:=10;
BEGIN
WHILE(I>=1) LOOP
DBMS_OUTPUT.PUT_LINE(I);
I:=I-2;
END LOOP;
END;

No comments:

Post a Comment

If you Like my blog Spread it and help friends for whom this blog is useful for their career.