querybuilder icon indicating copy to clipboard operation
querybuilder copied to clipboard

Recursive CTE required "WITH RECURSIVE" in MySQL

Open killswtch opened this issue 5 months ago • 0 comments

The WITH clause for CTEs needs to be able to support recursive CTEs under MySQL by using the WITH RECURSIVE syntax. Without the RECURSIVE keyword, self-referencing CTEs will fail with a "Table 'xxx' doesn't exist" error. There is a similar ticket for this for Postgres.

killswtch avatar Sep 17 '24 10:09 killswtch