Neo4j模糊查询及分页查询

Neo4j模糊查询:采用正则方式;

MATCH (n:House) where n.Name =~ '李.*'  RETURN n 

分页:

使用skip 及 limit

MATCH (n:House) where n.Name =~ '李.*'  RETURN n skip 1 limit 1

原文地址:https://blog.csdn.net/c1052981766/article/details/80048715
posted @ 2019-08-22 14:45  星朝  阅读(2700)  评论(1编辑  收藏  举报