From 5508a1e203c4aff596de0d3d518bcae4dc581a0e Mon Sep 17 00:00:00 2001 From: YuCheng Hu Date: Mon, 2 Aug 2021 14:08:23 -0400 Subject: [PATCH] =?UTF-8?q?=E5=A4=84=E7=90=86=E7=BF=BB=E8=AF=91=E4=B8=8D?= =?UTF-8?q?=E5=AE=8C=E5=85=A8=E7=9A=84=E4=BD=BF=E7=94=A8=20Druid=20?= =?UTF-8?q?=E8=BF=9B=E8=A1=8C=E6=9F=A5=E8=AF=A2=E7=9A=84=E5=86=85=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tutorials/tutorial-query.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tutorials/tutorial-query.md b/tutorials/tutorial-query.md index de613ce..7a10005 100644 --- a/tutorials/tutorial-query.md +++ b/tutorials/tutorial-query.md @@ -93,7 +93,7 @@ WHERE 语句将会显示在你的查询中。 ![Explain query](../assets/tutorial-query-06.png "Explain query") - > Another way to view the explain plan is by adding EXPLAIN PLAN FOR to the front of your query, as follows: + > 另外一种通过纯文本 JSON 格式查看 SQL 脚本的办法就是在查询脚本前面添加 EXPLAIN PLAN FOR, 如下所示: > >```sql >EXPLAIN PLAN FOR @@ -106,8 +106,7 @@ WHERE 语句将会显示在你的查询中。 >GROUP BY 1, 2 >ORDER BY "Edits" DESC >``` - >This is particularly useful when running queries - from the command line or over HTTP. + >这种方式针对在控制台工具上运行查询脚本的时候非常有用。 11. 最后,单击 `...` 然后选择 **Edit context** 来查看你可以添加的其他参数来控制查询的执行。