Notă
Accesul la această pagină necesită autorizare. Puteți încerca să vă conectați sau să modificați directoarele.
Accesul la această pagină necesită autorizare. Puteți încerca să modificați directoarele.
The STRINGTONULL function converts a string expression to null.
The STRINGTONULL function converts a string expression to null in Azure Cosmos DB.
Syntax
STRINGTONULL(<string_expr>)
Arguments
| Description | |
|---|---|
string_expr |
A string expression. |
Return types
Returns a null.
Examples
This section contains examples of how to use this query language construct.
Convert string to null
In this example, the STRINGTONULL function is used to convert various string expressions to null.
SELECT VALUE {
parseNullString: STRINGTONULL("null"),
parseWithPrefix: STRINGTONULL("null "),
parseWithSuffix: STRINGTONULL(" null"),
parseWithWhitespace: STRINGTONULL(" null "),
parseUppercase: STRINGTONULL("NULL"),
parseTitlecase: STRINGTONULL("Null"),
parseNull: STRINGTONULL(null),
parseUndefined: STRINGTONULL(undefined)
}
[
{
"parseNullString": null,
"parseWithPrefix": null,
"parseWithSuffix": null,
"parseWithWhitespace": null
}
]
Remarks
- This function doesn't utilize the index.
- If the expression can't be converted, the function returns
undefined.