NULL Statements
In PL/SQL programs, NULL statements are used to indicate "nothing should be done", equal to placeholders. They grant meanings to some statements and improve program readability.
Syntax
The following shows example use of NULL statements.
1 2 3 4 5 6 7 8 9 | DECLARE
...
BEGIN
...
IF v_num IS NULL THEN
NULL; --No data needs to be processed.
END IF;
END;
/
|
Last Article: Branch Statements
Next Article: Error Trapping Statements
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.