Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multiple CTE in single query

Is it possible to combine multiple CTEs in single query with arel? I am looking for way to get result like this:

WITH cte1 AS ( ... ), WITH RECURSIVE cte2 AS ( ... ), WITH cte3 AS ( ... ) SELECT ... FROM cte3 WHERE ... 

As you can see, I have one recursive CTE and two non recursive.

like image 479
axvm Avatar asked Feb 07 '16 00:02

axvm


People also ask

Can you use multiple CTE in a query?

After learning common table expressions or CTEs, a natural question is “Can I use several CTEs in one query?” Yes, you can!

Can I use CTE multiple times?

A CTE is similar to a derived table in that it is not stored and lasts only for the duration of the query. Unlike a derived table, a CTE behaves more like an in-line view and can be referenced multiple times in the same query. Using a CTE makes complex queries easier to read and maintain.

Can we call one CTE in another CTE?

Nested CTEs is a scenario where one CTE references another CTE in it.


2 Answers

Use the key word WITH once at the top. If any of your Common Table Expressions (CTE) are recursive (rCTE) you have to add the keyword RECURSIVE at the top once also, even if not all CTEs are recursive:

WITH RECURSIVE   cte1 AS (...)         -- can still be non-recursive , cte2 AS (SELECT ...            UNION ALL            SELECT ...)  -- recursive term , cte3 AS (...) SELECT ... FROM cte3 WHERE ... 

The manual:

If RECURSIVE is specified, it allows a SELECT subquery to reference itself by name.

Bold emphasis mine. And, even more insightful:

Another effect of RECURSIVE is that WITH queries need not be ordered: a query can reference another one that is later in the list. (However, circular references, or mutual recursion, are not implemented.) Without RECURSIVE, WITH queries can only reference sibling WITH queries that are earlier in the WITH list.

Bold emphasis mine again. Meaning that the order of WITH clauses is meaningless when the RECURSIVE key word has been used.

BTW, since cte1 and cte2 in the example are not referenced in the outer SELECT and are plain SELECT commands themselves (no collateral effects), they are never executed (unless referenced in cte3).

like image 148
Erwin Brandstetter Avatar answered Oct 01 '22 02:10

Erwin Brandstetter


Yes. You don't repeat the WITH. You just use a comma:

WITH cte1 AS ( ... ),      cte2 AS ( ... ),      cte3 AS ( ... ) SELECT ... FROM 'cte3' WHERE ... 

And: Only use single quotes for string and date constants. Don't use them for column aliases. They are not allowed for CTE names anyway.

like image 30
Gordon Linoff Avatar answered Oct 01 '22 01:10

Gordon Linoff