Help wanted!
The following content of this documentation page has been machine-translated. But unlike other websites, it is not done on the fly. This translated text lives on GitHub repository alongside main ClickHouse codebase and waits for fellow native speakers to make it more human-readable. You can also use the original English version as a reference.
Cláusula LIMIT
LIMIT m
permite seleccionar la primera m
filas del resultado.
LIMIT n, m
permite seleccionar el m
el resultado después de omitir la primera n
filas. El LIMIT m OFFSET n
sintaxis es equivalente.
n
y m
deben ser enteros no negativos.
Si no hay ORDER BY cláusula que ordena explícitamente los resultados, la elección de las filas para el resultado puede ser arbitraria y no determinista.