Esta página aún no está disponible en su idioma local. Estamos trabajando arduamente para agregar más versiones de idiomas. Gracias por tu apoyo.

On this page

Show all

NULL Statements

Updated on 2024-12-18 GMT+08:00

In PL/SQL programs, a NULL statement can be used to indicate "do nothing", which is also known as an empty statement.

A NULL statement acts as a placeholder and can give meaning to certain statements, improving the readability of the program.

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;
/
Feedback

Feedback

Feedback

0/500

Selected Content

Submit selected content with the feedback