NULL_OR_EMPTY

Checks whether a string is NULL or empty. Returns 1 if true, 0 otherwise.

Analyze Syntax

func.null_or_empty(<str>)

Analyze Examples

func.null_or_empty('')

┌───┐
 1  
└───┘

SQL Syntax

NULL_OR_EMPTY(<str>)

SQL Examples

SELECT NULL_OR_EMPTY('');

┌───┐
 1  
└───┘