Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The LENGTH function returns the number of characters in the specified string expression.
An Azure Cosmos DB for NoSQL system function that returns the numeric length of a string expression.
Syntax
LENGTH(<string_expr>)
Arguments
| Description | |
|---|---|
string_expr |
A string expression. |
Return types
Returns a numeric expression.
Examples
This section contains examples of how to use this query language construct.
Get length of string
In this example, the LENGTH function is used to return the length of a static string.
SELECT VALUE {
stringValue: LENGTH("AdventureWorks"),
emptyString: LENGTH("")
}
[
{
"stringValue": 14,
"emptyString": 0
}
]
Remarks
- This function doesn't utilize the index.