Skip to content

Commit 19466d3

Browse files
committed
Fixed one more formatting issue.
1 parent 2cd59a6 commit 19466d3

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

docs/t-sql/functions/openjson-transact-sql.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ Use OPENJSON to import JSON data into [!INCLUDE[ssNoVersion](../../includes/ssno
4444
## Syntax
4545

4646
```
47-
4847
OPENJSON( jsonExpression [ , path ] ) [ <with_clause> ]
4948
5049
<with_clause> ::= WITH ( { colName type [ column_path ] [ AS JSON ] } [ ,...n ] )
@@ -54,13 +53,13 @@ OPENJSON( jsonExpression [ , path ] ) [ <with_clause> ]
5453
5554
The **OPENJSON** table-valued function parses the *jsonExpression* provided as the first argument and returns one or more rows containing data from the JSON objects in this expression. *jsonExpression* can contain nested sub-objects. If you want to parse a sub-object from within *jsonExpression*, you can specify a second **path** parameter for the JSON sub-object.
5655

57-
openjson
56+
### openjson
5857

5958
![Syntax for OPENJSON TVF](../../relational-databases/json/media/openjson-syntax.png "OPENJSON syntax")
6059

6160
By default, the **OPENJSON** table-valued function returns three columns, which contain the key name, value, and type of each {key:value} pair found in *jsonExpression*. As an alternative, you can explicitly specify the schema of the result set **OPENJSON** returns by using *with_clause*:
6261

63-
with_clause
62+
### with_clause
6463

6564
![Syntax for WITH clause in OPENJSON TVF](../../relational-databases/json/media/openjson-shema-syntax.png "OPENJSON WITH syntax")
6665

0 commit comments

Comments
 (0)