IS_NULL (consulta NoSQL)
SE APLICA A: NoSQL
Devuelve un valor booleano que indica si el tipo de la expresión especificada es null
.
Sintaxis
IS_NULL(<expr>)
Argumentos
Descripción | |
---|---|
expr |
Cualquier expresión. |
Tipos de valores devueltos
Devuelve una expresión booleana.
Ejemplos
El siguiente ejemplo comprueba objetos de varios tipos mediante la función.
SELECT VALUE {
booleanIsNull: IS_NULL(true),
numberIsNull: IS_NULL(15),
stringIsNull: IS_NULL("AdventureWorks"),
nullIsNull: IS_NULL(null),
objectIsNull: IS_NULL({price: 85.23}),
arrayIsNull: IS_NULL(["red", "blue", "yellow"]),
populatedObjectPropertyIsNull: IS_NULL({quantity: 25, vendor: null}.quantity),
invalidObjectPropertyIsNull: IS_NULL({quantity: 25, vendor: null}.size),
nullObjectPropertyIsNull: IS_NULL({quantity: 25, vendor: null}.vendor)
}
[
{
"booleanIsNull": false,
"numberIsNull": false,
"stringIsNull": false,
"nullIsNull": true,
"objectIsNull": false,
"arrayIsNull": false,
"populatedObjectPropertyIsNull": false,
"invalidObjectPropertyIsNull": false,
"nullObjectPropertyIsNull": true
}
]
Comentarios
- Esta función se beneficia de un índice de intervalo.
Contenido relacionado
- System functions (Funciones del sistema)
IS_OBJECT