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