diff --git "a/data/2.Neo4j \344\270\255\351\230\266/1.Cypher\346\237\245\350\257\242\350\257\255\350\250\200/2.Cypher\345\222\214SQL\347\232\204\345\257\271\346\257\224/cypher-sql.md" "b/data/2.Neo4j \344\270\255\351\230\266/1.Cypher\346\237\245\350\257\242\350\257\255\350\250\200/2.Cypher\345\222\214SQL\347\232\204\345\257\271\346\257\224/cypher-sql.md" index e055f27f9a4086edfd97840ce76ba98b4995642b..aa6bc5208cc068d85e3fcb1a3af6c09e36f2deba 100644 --- "a/data/2.Neo4j \344\270\255\351\230\266/1.Cypher\346\237\245\350\257\242\350\257\255\350\250\200/2.Cypher\345\222\214SQL\347\232\204\345\257\271\346\257\224/cypher-sql.md" +++ "b/data/2.Neo4j \344\270\255\351\230\266/1.Cypher\346\237\245\350\257\242\350\257\255\350\250\200/2.Cypher\345\222\214SQL\347\232\204\345\257\271\346\257\224/cypher-sql.md" @@ -52,7 +52,7 @@ WHERE p.ProductName = 'Chocolade'; ## 答案 -```bash +```cypher MATCH (p:Product {productName:"Chocolade"})<-[:PRODUCT]-(:Order)<-[:PURCHASED]-(c:Customer) RETURN distinct c.companyName; ```