Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
What Are the Execution Control Statements
What Are the Execution Control Statements? - Oracle DBA FAQ - Introduction to PL/SQL
✍: FYIcenter.com
PL/SQL supports three groups of execution control statements:
The script below shows execution control statements:
SQL> set serveroutput on; SQL> DECLARE 2 total NUMBER; 3 BEGIN 4 total := 0; 5 LOOP 6 total := total+1; 7 IF total >= 10 THEN 8 GOTO print; 9 END IF; 10 END LOOP; 11 <> 12 DBMS_OUTPUT.PUT_LINE('Total counts: ' 13 || TO_CHAR(total)); 14 END; 15 / Total counts: 10
This sample script shows you how to use LOOP, IF, and GOTO statements.
2007-04-25, 4482👍, 0💬
Popular Posts:
What is COCOMO I, COCOMOII and COCOMOIII? In CD we have a complete free PDF tutorial of how to prepa...
Can JavaScript steal text from your clipboard? It is true, text you last copied for pasting (copy &a...
How To Control Vertical Alignment? - XHTML 1.0 Tutorials - Understanding Tables and Table Cells By d...
How To Control White Spaces between Table Cells? - XHTML 1.0 Tutorials - Understanding Tables and Ta...
What’ is the sequence in which ASP.NET events are processed ? Following is the sequence in which the...