弹出消息,例如“函数min(jsonb)不是唯一的”。
返回子句中的count()
之类的聚合函数不起作用。
当我尝试隐式类型转换时,会检测到多个函数。
有什么解决方法吗?
答案 0 :(得分:0)
请包括引发错误的查询。 同时,我希望这会有所帮助...
create ({name: 'John', age: 25})
create ({name: 'Rose', age: 22})
create ({name: 'Mary'})
create ({name: 'Jane', age: 33});
match(n) return max(n.age::"numeric");
match(n) return min(n.age::"numeric"), avg(n.age::"numeric"), stDev(n.age::"numeric");
match(n) return sum(n.age::"numeric"), collect(n.age) as "list of ages", count(n.age);
谢谢乔