Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions sql-statements/sql-statement-with.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,30 +11,30 @@ A Common Table Expression (CTE) is a temporary result set that can be referred m

**WithClause:**

``` ebnf
```ebnf
WithClause ::=
"WITH" WithList
| "WITH" recursive WithList
```

**WithList:**

``` ebnf
```ebnf
WithList ::=
WithList ',' CommonTableExpr
| CommonTableExpr
```

**CommonTableExpr:**

``` ebnf
```ebnf
CommonTableExpr ::=
Identifier IdentListWithParenOpt "AS" SubSelect
```

**IdentListWithParenOpt:**

``` ebnf
```ebnf
IdentListWithParenOpt ::=

| '(' IdentList ')'
Expand Down