IS_NULL (NoSQL-fråga)
GÄLLER FÖR: NoSQL
Returnerar ett booleskt värde som anger om typen av det angivna uttrycket är null
.
Syntax
IS_NULL(<expr>)
Argument
beskrivning | |
---|---|
expr |
Alla uttryck. |
Returtyper
Returnerar ett booleskt uttryck.
Exempel
I följande exempel kontrolleras objekt av olika typer med hjälp av funktionen.
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
}
]
Kommentarer
- Den här funktionen drar nytta av ett intervallindex.