Skip to content

Commit

Permalink
Update 2.use-space.md
Browse files Browse the repository at this point in the history
  • Loading branch information
cooper-lzy authored Nov 15, 2021
1 parent 5889820 commit c695e7a
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions docs-2.0/3.ngql-guide/9.space-statements/2.use-space.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,8 @@ nebula> CREATE SPACE IF NOT EXISTS space2 (vid_type=FIXED_STRING(30));
# 指定图空间space1作为工作空间。
nebula> USE space1;
# 检索图空间space1。
nebula> GO FROM 1 OVER edge1;
# 切换到图空间space2。
# 切换到图空间space2。检索space2时,无法从space1读取任何数据,检索的点和边与space1无关。
nebula> USE space2;
# 检索图空间space2。无法从space1读取任何数据,检索的点和边与space1无关。
nebula> GO FROM 2 OVER edge2;
```

!!! Caution
Expand Down

0 comments on commit c695e7a

Please sign in to comment.