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
2024-02-06 20:15:04
Neo4j模糊查询:采用正则方式;
MATCH (n:House) where n.Name =~ '李.*' RETURN n
分页:
使用skip 及 limit
MATCH (n:House) where n.Name =~ '李.*' RETURN n skip 1 limit 1