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:...
版本3.5.0
在count
功能上有一些错误(请参阅changelog]