If I have a query like
SELECT date_trunc('day', assigndate)e,
count(CASE WHEN a.assigneeid = 65548
AND a.assigneeid IN
(SELECT userid
FROM groupmembers
WHERE groupid = 65553) THEN 1 ELSE NULL END) assigned,
count(CASE WHEN a.assigneeid = 65548
AND a.completedtime IS NOT NULL
AND a.assigneeid IN
(SELECT userid
FROM groupmembers
WHERE groupid = 65553) THEN 1 ELSE NULL END) completed
FROM ASSIGNMENT a
WHERE assigndate > CURRENT_TIMESTAMP - interval '20 days'
GROUP BY date_trunc('day',assigndate);
The subquery in question is
SELECT userid
FROM groupmembers
WHERE groupid = 65553
then since the subquery is not co-related
to the parent query, it will be executed just once and the cached result will be used. But since the subquery is present at 2 locations in the query, then according to the SQL plan
, it is evaluated twice. Is there any way to cache
the result of that subquery and use it at both the locations ?
The subquery can't be converted to a join as is no single field on which to join (and it can't be an unconditional join, as the count will become wrong then)
You should rewrite the query to eliminate the subqueries:
In general, I think it is good practice to keep table references in the
FROM
(orWITH
) clauses. It can be hard to follow the logic of subqueries in theSELECT
clause. In this case, the subqueries are so somilar that they are practically begging to be combined into a single statement.You can use a common table express (
WITH
)