SQL SyntaxFunctionsList & MapIS_EMPTYOn this pageIS_EMPTYIS_EMPTY checks whether a list or map contains no elements.SyntaxIS_EMPTY(value)Parametersvalue – List or map expression.ExamplesSELECT IS_EMPTY(CAST('[]' AS LIST)); -- trueSELECT IS_EMPTY(CAST('{"a":1}' AS MAP)); -- falseNotesUsing other data types results in an error.