From e400aea7343f18a2eb427b1b5bf7384c0aadc662 Mon Sep 17 00:00:00 2001 From: cooper-lzy <78672629+cooper-lzy@users.noreply.github.com> Date: Tue, 7 Feb 2023 14:01:55 +0800 Subject: [PATCH] Update yield.md (#2548) --- docs-2.0/3.ngql-guide/8.clauses-and-options/yield.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs-2.0/3.ngql-guide/8.clauses-and-options/yield.md b/docs-2.0/3.ngql-guide/8.clauses-and-options/yield.md index 48e29611bfb..152a10c9a19 100644 --- a/docs-2.0/3.ngql-guide/8.clauses-and-options/yield.md +++ b/docs-2.0/3.ngql-guide/8.clauses-and-options/yield.md @@ -124,7 +124,7 @@ nebula> $var1 = GO FROM "player101" OVER follow \ | "player125" | +-------------+ -# 查找 player 钟年龄大于 30 且小于 32 的点,返回去掉重复属性的值。 +# 查找 player 中年龄大于 30 且小于 32 的点,返回去掉重复属性的值。 nebula> LOOKUP ON player \ WHERE player.age < 32 and player.age >30 \ YIELD DISTINCT properties(vertex).age as v;