DataGrip
 
Get DataGrip
You are viewing the documentation for an earlier version of DataGrip.

Code Inspection: Unused common table expression

Last modified: 13 May 2022

Reports unused common table expressions (CTE) inside the query.

Example (PostgreSQL):

By using WITH, we create a temporary named result set with the name a, also known as a common table expression (CTE). But we do not use this CTE later in the code. The unused CTE is greyed out.