I’m writing some SQL queries with several subqueries and lots of joins everywhere, both inside the subquery and the resulting table from the subquery.
We’re not using views so that’s out of the question.
After writing it I’m looking at it and scratching my head wondering what it’s even doing cause I can’t follow it.
What kind of formatting do you use to make an attempt to clean up such a mess? Indents perhaps?
With large queries I tend to rely a lot on named result sets using
WITH. This allows to define the result set beforehand and it makes the main query simpler. Named results sets may help to make the query plan more efficient as well e.g. postgres stores the result set in a temporary table.Example:
The example is a bit contrived but I hope it shows the increase in clarity compared to inline subqueries. Named result sets have been a great help for me when I’ve been preparing data for OLAP use. Named results sets are also must if you have/want to create recursive queries.
WITHworks at least on current versions of Postgres, Oracle and SQL Server