Neo4j中的SQL(3)

Where 如果需要從查找的數據的圖中過濾,可以在查詢語句中添加where子句。 圖:   Boolean 操作類型 可以使用boolean操作符and 和 or 或者也可以使用not()函數。 查詢:   START n=node(3, 1) WHERE (n.age < 30 and n.name = "Tobias") ornot(n.name = "Tobias") RETURN n  
相關文章
相關標籤/搜索