DocumentDB SQL – Built-in Function

DocumentDB supports a host of built-in functions for common operations that can be used inside queries. There are a bunch of functions for performing mathematical calculations, and also type checking functions that are extremely useful while working with varying schemas. These functions can test if a certain property exists and if it does whether it’s a number or a string, Boolean or object.

We also get these handy functions for parsing and manipulating strings, as well as several functions for working with arrays allowing you to do things like concatenate arrays and test to see if an array contains a particular element.

Following are the different types of built-in functions −

S.No.Built-in Functions & Description
1Mathematical FunctionsThe mathematical functions perform a calculation, usually based on input values that are provided as arguments, and return a numeric value.
2Type Checking FunctionsThe type checking functions allow you to check the type of an expression within SQL queries.
3String FunctionsThe string functions perform an operation on a string input value and return a string, numeric or Boolean value.
4Array FunctionsThe array functions perform an operation on an array input value and return in the form of numeric, Boolean or array value.
5Spatial FunctionsDocumentDB also supports the Open Geospatial Consortium (OGC) built-in functions for geospatial querying.

Leave a Reply