edmondsky commented on a change in pull request #16418:
URL: https://github.com/apache/flink/pull/16418#discussion_r667495611
##########
File path: docs/content.zh/docs/dev/table/sql/queries/select.md
##########
@@ -22,41 +22,41 @@ specific language governing permissions and limitations
under the License.
-->
-# SELECT & WHERE clause
+# SELECT 与 WHERE 子句
{{< label Batch >}} {{< label Streaming >}}
-The general syntax of the `SELECT` statement is:
+`SELECT` 语句的常见语法格式如下所示:
```sql
SELECT select_list FROM table_expression [ WHERE boolean_expression ]
```
-The `table_expression` refers to any source of data. It could be an existing
table, view, or `VALUES` clause, the joined results of multiple existing
tables, or a subquery. Assuming that the table is available in the catalog, the
following would read all rows from `Orders`.
+这里的 `table_expression` 可以是任意的数据来源。它可以是一张已经存在的表、视图或者 `VALUES`
子句,也可以是多个现有表的关联结果、或一个子查询。这里我们假设 `Orders` 表在 `Catalog` 中处于可用状态,那么下面的语句会从
`Orders` 表中读出所有的行。
Review comment:
I think it's all set. @RocMarshal
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]