SQL SyntaxFunctionsList & MapVALUESOn this pageVALUESVALUES returns the values of a map as a list.SyntaxVALUES(map)Parametersmap – Map expression.ExamplesSELECT VALUES(CAST('{"id":1, "name":"alice"}' AS MAP));This returns [1, "alice"].NotesA non-map value will cause an error.