Apache Hive : HPL/SQL - NULL Statement

Last updated: August 12, 2026

Apache Hive : HPL/SQL - NULL Statement

NULL statement is a no operation statement (no-op), it just passes control to the next statement.

Syntax:

NULL;

Example:

declare 
  code char(1) := 'a';
begin
  null;
end;

Compatibility: Oracle