Update docs/en/sql-reference/statements/select/limit-by.md

Co-authored-by: olgarev <56617294+olgarev@users.noreply.github.com>
This commit is contained in:
Tatiana Kirillova 2021-10-07 08:27:17 +03:00 committed by GitHub
parent c70ce36ff4
commit 0ed02e689d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,7 +16,7 @@ During query processing, ClickHouse selects data ordered by sorting key. The sor
!!! note "Note"
`LIMIT BY` is not related to [LIMIT](../../../sql-reference/statements/select/limit.md). They can both be used in the same query.
If you want to use column numbers instead of column names in the `LIMIT BY` clause, enable setting [enable_positional_arguments](../../../operations/settings/settings.md#enable-positional-arguments).
If you want to use column numbers instead of column names in the `LIMIT BY` clause, enable the setting [enable_positional_arguments](../../../operations/settings/settings.md#enable-positional-arguments).
## Examples {#examples}