SQL SyntaxFunctionsList & MapENTRIESOn this pageENTRIESENTRIES converts a map into a list of key–value pairs.SyntaxENTRIES(map)Parametersmap – Map expression to convert.ExamplesSELECT ENTRIES(CAST('{"name":"GlueSQL"}' AS MAP));This returns [["name", "GlueSQL"]].NotesENTRIES requires a map argument.