Skip to content

Commit

Permalink
Update 2.match.md (#2385)
Browse files Browse the repository at this point in the history
* Update 2.match.md

* Update 2.match.md

* Update 2.match.md

* Update 2.match.md

* Update 2.match.md

* Update 2.match.md

* Update 2.match.md
  • Loading branch information
foesa-yang authored Dec 14, 2022
1 parent f37a40c commit 7b65d0c
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions docs-2.0/3.ngql-guide/7.general-query-statements/2.match.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,24 +24,29 @@ MATCH <pattern> [<clause_1>] RETURN <output> [<clause_2>];

- `clause_2`:支持`ORDER BY``LIMIT`子句。

## 注意事项
## 使用限制

除以下三种情况之外,请确保 `MATCH` 语句有**至少**一个[索引](../14.native-index-statements/1.create-native-index.md)可用
未创建[索引](../14.native-index-statements/1.create-native-index.md)时,仅以下情况支持使用`MATCH`查询。当使用`MATCH`语句出现报错时,用户可以创建并重建索引后执行查询语句

- `MATCH`语句中`WHERE`子句使用 id() 函数指定了点的 VID,不需要创建索引即可执行。

- 当遍历所有点边时,例如`MATCH (v) RETURN v LIMIT N`,不需要创建索引,但必须使用`LIMIT`限制输出结果数量
- 当遍历所有点或边时,例如`MATCH (v) RETURN v LIMIT N``MATCH ()-[e]->() RETURN e LIMIT N`

- 当遍历指定 Tag 的点或指定 Edge Type 的边时,例如`MATCH (v:player) RETURN v LIMIT N`,不需要创建索引,但必须使用`LIMIT`限制输出结果数量。
- 当遍历指定 Tag 的点,例如`MATCH (v:player) RETURN v LIMIT N`

- 当遍历指定 Edge Type 并指定边的方向,例如`MATCH ()-[e:follow]->() RETURN e LIMIT N`

!!! note

目前 MATCH 语句无法查询到悬挂边。
- 目前 MATCH 语句无法查询到悬挂边。
- 不支持没有索引时同时遍历指定的 Tag 和 Edge Type,例如执行`MATCH (v:player)-[e:follow]->() RETURN e LIMIT N`会报错。

!!! compatibility "历史版本兼容性"

从 3.0.0 版本开始,为了区别不同 Tag 的属性,返回属性时必须额外指定 Tag 名称。即从`RETURN <变量名>.<属性名>`改为`RETURN <变量名>.<Tag名>.<属性名>`。



## 示例

### 创建索引
Expand Down

0 comments on commit 7b65d0c

Please sign in to comment.