Null Statement
The null statement is a null keyword followed by a semicolon(;).
What is the meaning of null?
Null means having no value; in other words null is zero.
Example (1):
The simplest valid PL/SQL program.
Begin
null;
End;
Example (2):
The NULL statement within an IF…THEN…ELSE statement: