หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
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.