Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
cooper-lzy committed Jan 5, 2022
1 parent 978a4e3 commit 4b38607
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs-2.0/3.ngql-guide/1.nGQL-overview/1.overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ nebula> CREATE TAG IF NOT EXISTS player(name string, age int);
|相等运算符| `=` | `==` |
|数学求幂| `^` | 使用`pow(x, y)`替代`^`|
|边 Rank| 无此概念 |`@rank`设置。 |
|语句|-|不支持 openCypher 9 的所有 DML 语句(如`CREATE``MERGE`等),不支持所有的 DCL, 和支持部分 `MATCH` 语法和函数(不支持`OPTIONAL MATCH`,不支持多`MATCH`,不支持 `WHERE` 中使用图 pattern)。 |
|语句|-|不支持 openCypher 9 的所有 DML 语句(如`CREATE``MERGE`等),不支持所有的 DCL, 和支持部分 `MATCH` 语法和函数(不支持 `WHERE` 中使用图 pattern)。 |
|语句文本换行 | 换行符 | `\` + 换行符 |
|Label 与 Tag 是不同的概念| Label 用于寻找点(点的索引)。 | Tag 用于定义点的一种类型及相应的属性,无索引功能。 |
| 预编译与参数化查询 | 支持 | 仅支持参数化查询。 |
Expand Down
4 changes: 1 addition & 3 deletions docs-2.0/3.ngql-guide/5.operators/1.comparison.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,7 @@ Nebula Graph 支持的比较符如下。

## OpenCypher 兼容性

- `NULL`的比较操作和 openCypher 不同,行为也可能会改变。在 openCypher 中,`IS [NOT] NULL`通常与`OPTIONAL MATCH`一起使用,但是 nGQL 不支持`OPTIONAL MATCH`

- openCypher 中没有`EMPTY`,因此不支持在 MATCH 语句中使用`EMPTY`
openCypher 中没有`EMPTY`,因此不支持在 MATCH 语句中使用`EMPTY`

## 示例

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,7 @@ nebula> MATCH (m)-[]->(n) WHERE id(m)=="player100" \

### OPTIONAL MATCH检索

参见[OPTIONAL MATCH](../8.clauses-and-options/optional-match.md)
参见[OPTIONAL MATCH](optional-match.md)

!!! Performance

Expand Down
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@ nav:

- 通用查询语句:
- MATCH: 3.ngql-guide/7.general-query-statements/2.match.md
- OPTIONAL MATCH: 3.ngql-guide/7.general-query-statements/optional-match.md
- LOOKUP: 3.ngql-guide/7.general-query-statements/5.lookup.md
- GO: 3.ngql-guide/7.general-query-statements/3.go.md
- FETCH: 3.ngql-guide/7.general-query-statements/4.fetch.md
Expand Down Expand Up @@ -227,7 +228,6 @@ nav:
- YIELD: 3.ngql-guide/8.clauses-and-options/yield.md
- WITH: 3.ngql-guide/8.clauses-and-options/with.md
- UNWIND: 3.ngql-guide/8.clauses-and-options/unwind.md
- OPTIONAL MATCH: 3.ngql-guide/8.clauses-and-options/optional-match.md

- 图空间语句:
- CREATE SPACE: 3.ngql-guide/9.space-statements/1.create-space.md
Expand Down

0 comments on commit 4b38607

Please sign in to comment.