Skip to content

Commit

Permalink
Update composite property indexes (#1118)
Browse files Browse the repository at this point in the history
* Update 1.create-native-index.md

* Update 1.create-native-index.md

* Update 1.create-native-index.md
  • Loading branch information
cooper-lzy authored Nov 1, 2021
1 parent 6050b54 commit e847c6d
Showing 1 changed file with 31 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,3 +124,34 @@ nebula> CREATE TAG INDEX player_index_1 on player(name(10), age);
!!! caution

不支持跨Tag或Edge type创建复合索引。

!!! note

使用复合属性索引时,遵循"最左匹配原则",必须从复合属性索引的最左侧开始匹配。
<!--
需要注意的是:
- 如果`LOOKUP`语句没有匹配复合属性索引,会退化为全表扫描。
- 如果`MATCH`语句没有匹配复合属性索引,会返回报错。
请参见下方示例。
```ngql
# 为标签t的前三个属性创建复合属性索引。
nebula> CREATE TAG INDEX example_index ON TAG t(p1, p2, p3);
# 注意:无法匹配到索引,因为不是从p1开始,会返回找不到有效索引的报错。
nebula> MATCH (v:t) WHERE t.p2 == 2 and t.p3 == 3;
# 注意:无法匹配到索引,但是退化为全表扫描进行查询。
nebula> LOOKUP ON t2 where t.p2 == 2;
# 可以匹配到索引。
nebula> MATCH (v:t) WHERE t.p1 == 1;
# 可以匹配到索引,因为p1和p2是连续的。
nebula> MATCH (v:t) WHERE t.p1 == 1 and t.p2 == 2;
# 可以匹配到索引,因为p1、p2、p3是连续的。
nebula> MATCH (v:t) WHERE t.p1 == 1 and t.p2 == 2 and t.p3 == 3;
```
-->

0 comments on commit e847c6d

Please sign in to comment.