Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/content.zh/docs/dev/table/sql/queries/limit.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ under the License.

{{< label Batch >}}

`LIMIT` clause constrains the number of rows returned by the `SELECT` statement. In general, this clause is used in conjunction with ORDER BY to ensure that the results are deterministic.
`LIMIT` 子句限制 `SELECT` 语句返回的行数。 通常,此子句与 ORDER BY 结合使用,以确保结果是确定性的。

The following example selects the first 3 rows in `Orders` table.
以下示例选择 `Orders` 表中的前 3 行。

```sql
SELECT *
Expand Down