From: | "Roger Hand" <RHand(at)kailea(dot)com> |
---|---|
To: | "Collin Peters" <cadiolis(at)gmail(dot)com>, <pgsql-performance(at)postgresql(dot)org> |
Subject: | Re: Simple query: how to optimize |
Date: | 2005-10-28 22:40:40 |
Message-ID: | DB28E9B548192448A4E8C8A3C1B1E475611DAF@sj1-exch-01.us.corp.kailea.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-performance |
On October 28, 2005 2:54 PM
Collin Peters wrote:
> I have two tables, one is called 'users' the other is 'user_activity'.
...
> I am trying to write a simple query that returns the last time each
> user logged into the system. This is how the query looks at the
> moment:
>
> SELECT u.user_id, MAX(ua.activity_date)
> FROM pp_users u
> LEFT OUTER JOIN user_activity ua ON (u.user_id = ua.user_id AND
> ua.user_activity_type_id = 7)
> WHERE u.userstatus_id <> 4
> AND age(u.joined_date) < interval '30 days'
> GROUP BY u.user_id
You're first joining against the entire user table, then filtering out the users
you don't need.
Instead, filter out the users you don't need first, then do the join:
SELECT users.user_id, MAX(ua.activity_date)
FROM
(SELECT u.user_id
FROM pp_users u
WHERE u.userstatus_id <> 4
AND age(u.joined_date) < interval '30 days'
) users
LEFT OUTER JOIN user_activity ua
ON (users.user_id = ua.user_id
AND ua.user_activity_type_id = 7)
GROUP BY users.user_id
(disclaimer: I haven't actually tried this sql)
From | Date | Subject | |
---|---|---|---|
Next Message | Collin Peters | 2005-10-28 23:56:40 | Re: Simple query: how to optimize |
Previous Message | Havasvölgyi Ottó | 2005-10-28 22:13:18 | Re: Best way to check for new data. |