Vertaling van "no-null" in Engels
We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
En funciones agregadas solo los campos no-NULL se involucran en la operación.
In aggregate functions only non-NULL fields are involved in the computation.
El código anterior funciona correctamente si A y B son ambas NULL o ambas no-NULL.
The above code will work correctly if A and B are both NULL or both non-NULL.
Para AVG, los campos no-NULL son sumados y la suma dividida entre el número de campos no-NULL.
For AVG, the non-NULL fields are summed and the sum divided by the number of non-NULL fields.
Por medio de la función, este valor no vuelve a ser NULL: el resultado es un valor no-NULL.
Within the function, this argument is not changed back to NULL; a non-NULL result is returned.
Como COALESCE, devuelven el primero argumento si es no-NULL; en otro caso, devuelven el segundo.
Like COALESCE, they return the first argument if it's not NULL; otherwise, they return the second.
COALESCE devuelve el primer valor no-NULL de la lista de argumentos.
Columnas con tipos de datos CHAR, VARCHAR, o TEXT tienen colaciones no-NULL.
Columns with CHAR, VARCHAR, or TEXT data types have collations.
En triggers, es a menudo útil saber si cierto campo ha cambiado (incluyendo que se haya convertido de NULL a no-NULL o viceversa) o sigue siendo igual.
In triggers you often want to test if a certain field has changed (including: gone from NULL to non-NULL or vice versa) or stayed the same (including: kept its NULL state).
Si la función devuelve una conversión NULL <-> no-NULL no deseada, tienes que trabajar en tu código antes de llamar a la UDF (mira también Comprobando si algo es NULL, también en esta guía).
If the function performs an undesired NULL <-> non-NULL conversion, you'll have to anticipate it in your code before calling the UDF (see also Testing for NULL - if it matters, elsewhere in this guide).
COALESCE devuelve el primer valor no-NULL de la lista de argumentos.
Description: The COALESCE function takes two or more arguments and returns the value of the first non-NULL argument.
En funciones agregadas como COUNT, SUM, AVG, MAX, y MIN, NULL se maneja de manera diferente: para calcular el resultado, solo se tienen en consideración los campos con valores no-NULL.
The aggregate functions - COUNT, SUM, AVG, MAX, MIN and LIST - don't handle NULL in the same way as ordinary functions and operators.