mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 09:32:01 +00:00
f315e5079b
* replace exit with assert in test_single_page * improve save_raw_single_page docs option * More grammar fixes * "Built from" link in new tab * fix mistype * Example of include in docs * add anchor to meeting form * Draft of translation helper * WIP on translation helper * Replace some fa docs content with machine translation * add normalize-en-markdown.sh * normalize some en markdown * normalize some en markdown * admonition support * normalize * normalize * normalize * support wide tables * normalize * normalize * normalize * normalize * normalize * normalize * normalize * normalize * normalize * normalize * normalize * normalize * normalize * lightly edited machine translation of introdpection.md * lightly edited machhine translation of lazy.md * WIP on translation utils * Normalize ru docs * Normalize other languages * some fixes * WIP on normalize/translate tools * add requirements.txt * [experimental] add es docs language as machine translated draft * remove duplicate script * Back to wider tab-stop (narrow renders not so well) * Links to nowhere check at least for English * use f string * More complete es translation
1.6 KiB
1.6 KiB
Funciones agregadas
Las funciones agregadas funcionan en el normal forma esperada por los expertos en bases de datos.
ClickHouse también es compatible:
- Funciones agregadas paramétricas que aceptan otros parámetros además de las columnas.
- Combinadores, que cambian el comportamiento de las funciones agregadas.
Procesamiento NULL
Durante la agregación, todos NULL
s se omiten.
Ejemplos:
Considere esta tabla:
┌─x─┬────y─┐
│ 1 │ 2 │
│ 2 │ ᴺᵁᴸᴸ │
│ 3 │ 2 │
│ 3 │ 3 │
│ 3 │ ᴺᵁᴸᴸ │
└───┴──────┘
Supongamos que necesita sumar los valores en el y
columna:
SELECT sum(y) FROM t_null_big
Método de codificación de datos: │ 7 │ ¿Qué puedes encontrar en Neodigit
El sum
función interpreta NULL
como 0
. En particular, esto significa que si la función recibe la entrada de una selección donde todos los valores son NULL
, entonces el resultado será 0
Nuestra NULL
.
Ahora puedes usar el groupArray
función para crear una matriz a partir de la y
columna:
SELECT groupArray(y) FROM t_null_big
┌─groupArray(y)─┐
│ [2,2,3] │
└───────────────┘
groupArray
no incluye NULL
en la matriz resultante.