IF condition THEN
statements;
END IF;






CASE selector
WHEN selector_value_1 THEN
statements_1
WHEN selector_value_1 THEN
statement_2
...
ELSE
else_statements
END CASE;




<<label>> LOOP
statements;
END LOOP loop_label;


WHILE condition
LOOP
statements;
END LOOP;


FOR index IN lower_bound .. upper_bound
LOOP
statements;
END LOOP;




| [오라클 DB 스터디] 커서(Cursor) - 2 (0) | 2025.03.30 |
|---|---|
| [오라클 DB 스터디] 커서(Cursor) - 1 (0) | 2025.03.23 |
| [오라클 DB 스터디] PL/SQL 변수 (0) | 2025.02.24 |
| [오라클 DB 스터디] PL/SQL - 1 (0) | 2025.02.16 |
| [오라클 DB 스터디] 서브쿼리 (0) | 2025.02.02 |
댓글 영역