[Neo4j] ORDER BY / 2023.02.14
https://neo4j.com/docs/cypher-manual/current/clauses/order-by/ ORDER BY - Cypher Manual `ORDER BY` is a sub-clause following `RETURN` or `WITH`, and it specifies that the output should be sorted and how. neo4j.com *Example Graph create (a {name:'A', age:34, length:170}), (b {name:'B', age:36}), (c {name:'C', age:32, length:185}), (a)-[:KNOWS]->(b), (b)-[:KNOWS]->(c) ORDER BY는 출력을 정렬할 수 있음 1. Ord..