Db2 doesn’t support join with on in recursion


Db2 (LUW and z) have some surprising limitations regarding recursive with clauses (documentation). The respective error message in all its glory:

The fullselect of the recursive common table expression name must be the UNION of two or more fullselects and cannot include column functions, GROUP BY clause, HAVING clause, ORDER BY clause, or an explicit join including an ON clause.

Among them is the inability to use the on clause in the recursive leg, which is commonly required when processing hierarchical structures.

WITH prev (id, parent) AS (
  SELECT t.id, t.parent
    FROM hierarchy t
   WHERE t.id = ?
UNION ALL
  SELECT t.id, t.parent
    FROM hierarchy t
    JOIN prev ON t.parent = prev.id
)
…

In case all you need is an inner join, the limitation can be bypassed with an implicit cross join using a comma (,) and moving the on condition to the where clause:

WITH prev (id, parent) AS (
  SELECT t.id, t.parent
    FROM hierarchy t
   WHERE t.id = ?
UNION ALL
  SELECT t.id, t.parent
    FROM hierarchy t
       , prev
   WHERE t.parent = prev.id
)
…

In the simple case above the keyword join has been replaced by a comma (,) and the on by where.

Affected Products and Versions

BigQuery 2025-09-02Db2 (LUW) 12.1.2MariaDB 12.0.2MySQL 9.3.0Oracle DB 23.9PostgreSQL 17SQL Server 2022SQLite 3.50.0recursive with + join + onrecursive with + “,”-join + where

You can’t catch up on 20 years of SQL evolution in one day. Subscribe the newsletter via E-Mail, Bluesky or RSS to gradually catch up and to keep modern-⁠sql.com on your radar.

About the Author

Photo of Markus Winand

Markus Winand provides insights into SQL and shows how different systems support it at modern-sql.com. Previously he made use-the-index-luke.com, which is still actively maintained. Markus can be hired as trainer, speaker and consultant via winand.at.

Buy the Book

Cover of “SQL Performance Explained”: Squirrel running on grass

The essence of SQL tuning in 200 pages

Buy now!
(paperback and/or PDF)

Paperback also available at Amazon.com.

Hire Markus

Markus offers SQL training and consulting for developers working at companies of all sizes.
Learn more »

Connect with Markus Winand

Subscribe mailinglistsSubscribe the RSS feedMarkus Winand on LinkedInMarkus Winand on XINGMarkus Winand on TwitterMarkus Winand on Bluesky
Copyright 2015-2025 Markus Winand. All righs reserved.
Legal | Contact | NO WARRANTY | Trademarks | Privacy and GDPR