From 587014217ca00dc3685f205b0ceef24439e0bdd0 Mon Sep 17 00:00:00 2001 From: DIAOZHAFENG <513414712@qq.com> Date: Thu, 4 Mar 2021 16:47:59 +0800 Subject: [PATCH] Update in.md update untranslated line --- docs/zh/sql-reference/operators/in.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/zh/sql-reference/operators/in.md b/docs/zh/sql-reference/operators/in.md index a16b75fe555..11c0a134bf6 100644 --- a/docs/zh/sql-reference/operators/in.md +++ b/docs/zh/sql-reference/operators/in.md @@ -18,7 +18,7 @@ SELECT (CounterID, UserID) IN ((34, 123), (101500, 456)) FROM ... 如果左侧是索引中的单列,而右侧是一组常量,则系统将使用索引处理查询。 -Don't list too many values explicitly (i.e. millions). If a data set is large, put it in a temporary table (for example, see the section “External data for query processing”),然后使用子查询。 +请不要列举太多具体的常量 (比方说 几百万条)。如果数据集非常大,请把它放在一张临时表里(例如,参考章节“External data for query processing”),然后使用子查询。 运算符的右侧可以是一组常量表达式、一组带有常量表达式的元组(如上面的示例所示),或括号中的数据库表或SELECT子查询的名称。