Re: [GENERAL] Aggregate function with Join stop working under certain condition

2009-08-26 Thread Naoko Reeves
@postgresql.org Subject: Re: [GENERAL] Aggregate function with Join stop working under certain condition On Wed, Aug 26, 2009 at 11:17:10AM -0400, Naoko Reeves wrote: > I am joining 4 tables (doc, bpt, con, emp) - emp and doc relationship is > one to many. I want to only one doc record per

Re: [GENERAL] Aggregate function with Join stop working under certain condition

2009-08-26 Thread Sam Mason
On Wed, Aug 26, 2009 at 11:17:10AM -0400, Naoko Reeves wrote: > I am joining 4 tables (doc, bpt, con, emp) - emp and doc relationship is > one to many. I want to only one doc record per emp as condition shown > below: [...] > However, I wan to add one more doc column but as soon as I add one, it

[GENERAL] Aggregate function with Join stop working under certain condition

2009-08-26 Thread Naoko Reeves
I am joining 4 tables (doc, bpt, con, emp) - emp and doc relationship is one to many. I want to only one doc record per emp as condition shown below: The query below successfully returns desired result (returns 4 records): Select bpt_key, emp_full_name, con_full_name, max(doc_date_created) as