英文:
Support for count(DISTINCT) or any other collect-like operation in Memgraph
问题
I use Memegraph in Dockerized environment. Memgraph version is 2.4.1. I have a need for count(DISTINCT)
or some other collect-like operation. But I can't find it in the docs.
Is this supported?
英文:
I use Memegraph in Dockerized environment. Memgraph version is 2.4.1. I have a need for count(DISTINCT)
or some other collect-like operation. But I can't find it in the docs.
Is this supported?
答案1
得分: 0
我刚刚检查了最新可用的Memgraph(版本2.10)。它支持RETURN COUNT(DISTINCT n.prop)
。文档可以在https://memgraph.com/docs/cypher-manual/clauses/return#10-returning-unique-results找到。
英文:
I've just checked the latest available Memgraph (version 2.10). It supports RETURN COUNT(DISTINCT n.prop)
. Documentation can be found at https://memgraph.com/docs/cypher-manual/clauses/return#10-returning-unique-results.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论