Skip to content

Latest commit

 

History

History
92 lines (70 loc) · 2.3 KB

sql-statement-with.md

File metadata and controls

92 lines (70 loc) · 2.3 KB
title summary
WITH | TiDB SQL Statement Reference
An overview of the usage of WITH (Common Table Expression) for the TiDB database.

WITH

A Common Table Expression (CTE) is a temporary result set that can be referred multiple times within a SQL statement to improve the statement's readability and execution efficiency. You can apply the WITH statement to use Common Table Expressions.

Synopsis

WithClause:

WithClause ::=
        "WITH" WithList
|       "WITH" "RECURSIVE" WithList

WithList:

WithList ::=
        WithList ',' CommonTableExpr
|       CommonTableExpr

CommonTableExpr:

CommonTableExpr ::=
        Identifier IdentListWithParenOpt "AS" SubSelect

IdentListWithParenOpt:

IdentListWithParenOpt ::=
( '(' IdentList ')' )?

Examples

Non-recursive CTE:

WITH cte AS (SELECT 1, 2) SELECT * FROM cte t1, cte t2;
+---+---+---+---+
| 1 | 2 | 1 | 2 |
+---+---+---+---+
| 1 | 2 | 1 | 2 |
+---+---+---+---+
1 row in set (0.00 sec)

Recursive CTE:

WITH RECURSIVE cte(a) AS (SELECT 1 UNION SELECT a+1 FROM cte WHERE a < 5) SELECT * FROM cte;
+---+
| a |
+---+
| 1 |
| 2 |
| 3 |
| 4 |
| 5 |
+---+
5 rows in set (0.00 sec)

MySQL compatibility

  • In strict mode, when the data length recursively calculated exceeds the data length of the seed part, TiDB returns a warning while MySQL returns an error. In non-strict mode, the behavior of TiDB is consistent with that of MySQL.
  • The data type for recursive CTE is determined by the seed part. The data type of the seed part is not completely consistent with MySQL in some cases (such as functions).
  • In the case of multiple UNION / UNION ALL operators, MySQL does not allow UNION to be followed by UNION ALL, but TiDB does.
  • If there is a problem with the definition of a CTE, TiDB will report an error, while MySQL will not if the CTE is not referred.

See also