📜  Neo4j 常用子句

📅  最后修改于: 2020-11-25 00:49:58             🧑  作者: Mango

Neo4j总则

以下是Neo4j CQL的一些常规条款的列表:

Index Clause Usage
1. RETURN The RETURN clause is used to define what to include in the query result set.
2. ORDER BY The ORDER BY clause is used to arrange the output of a query in order. It is used along with the clauses return or with.
3. LIMIT The LIMIT clause is used to limit the rows in the result to a specific value.
4. SKIP The SKIP clause is used to define from which row to start including the rows in the output.
5. WITH The WITH clause is used to make two queries work together.
6. UNWIND The UNWIND clause is used to expand a list into a sequence of rows.
7. UNION The UNION clause is used to combine the result of multiple queries.
8. CALL The CALL clause is used to invoke a procedure deployed in the database.