Neo4j计数不匹配

问题描述 投票:0回答:1

Neo4j版本:3.5.0显示的计数在特定时间有很大的不同。那怎么可能?与count(*)相比,标签exists count(*)显示的数字更少

neo4j> MATCH (n:User) where exists(n.user_id) RETURN count(*);
+----------+
| count(*) |
+----------+
| 8340287  |
+----------+

1 row available after 1130 ms, consumed after another 0 ms
neo4j> MATCH (n:User) RETURN count(*);
+----------+
| count(*) |
+----------+
| 8322843  |
+----------+

1 row available after 5 ms, consumed after another 0 ms

Neo4j版本:3.5.0。在特定时间,显示的计数有很大的不同。那怎么可能?与现有计数(*)相比,标签count(*)显示的数字更少neo4j> MATCH(n:...

neo4j cypher graph-databases
1个回答
1
投票

版本3.5.0count功能上有一些错误(请参阅changelog]

最新问题
© www.soinside.com 2019 - 2025. All rights reserved.