JSON (JavaScript Object Notation) is a simple format for exchanging data. It is self-descriptive, understandable in any language, and irrespective of language. It serves as an XML substitute. JSON is currently a popular data transfer standard.
The data that returned by modern services is JSON text. SQL Server JSON is the need for data developers to return JSON in SQL. The built-in JSON support in the SQL server is distinct from the native JSON type.
List of Functions
Following is a list of scalar functions that returns information about cursors in the SQL server −
Sr.No. | Function & Description |
---|---|
1 | ISJSONIs used check a string’s validity for JSON (JavaScript Object Notation) syntax. |
2 | JSON_OBJECTIs used create JSON objects from the results of evaluating the SQL expressions of the arguments. |
3 | JSON_ARRAYIt accepts an expression or a comma-separated list of expressions and returns a JSON array containing those values. |
4 | JSON_VALUEIt accepts a JSON string and returns a scalar value. |
5 | JSON_QUERYIs used to extract data from a JSON object. |
6 | JSON_MODIFYIs used to change JSON data kept in a column of a SQL Server table. |
7 | JSON_PATH_EXISTSIs used to determine whether a particular JSON route is present within a JSON string. |
Leave a Reply