Re: SQL dealing with subquery - Mailing list pgsql-sql

From Bryan Emrys
Subject Re: SQL dealing with subquery
Date
Msg-id 200801160754.41769.bryan.emrys@gmail.com
Whole thread Raw
In response to Re: SQL dealing with subquery  ("Rodrigo E. De León Plicet" <rdeleonp@gmail.com>)
Responses Re: SQL dealing with subquery  ("Bryan Emrys" <bryan.emrys@gmail.com>)
List pgsql-sql
Thanks. It throws off a few extra countries where there is only one treaty, but those are
few enough that I can handle them manually.

I thought the solution was also going to give me insight into how to select just the lowest
rate from each couple, (i.e. for each payor, who is the lowest rate payee) but it looks like
I'll have find some time to think about that later (I've also got to think about what to do in tie situations.).

Again, thanks.

Bryan

On Tuesday 15 January 2008 12:40:13 pm Rodrigo E. De León Plicet wrote:
> On Jan 15, 2008 1:04 PM, Bryan Emrys <bryan.emrys@gmail.com> wrote:
> > In other words, in the sample above, I only want to return:
> > 'Canada','Ireland',0
> > 'Canada','Netherlands',5
>
> Try (untested):
>
> SELECT t2.*
> FROM   (SELECT   payor
>         FROM     treaty_rates
>         WHERE    payee IN ('Netherlands', 'Ireland')
>         GROUP BY payor
>         HAVING   MIN (rate) != MAX (rate)) t1
>        JOIN
>        treaty_rates t2 ON t1.payor = t2.payor
> WHERE  t2.payee IN ('Netherlands', 'Ireland');
>




pgsql-sql by date:

Previous
From: Achilleas Mantzios
Date:
Subject: Re: Update PK Violation
Next
From: "Scott Marlowe"
Date:
Subject: Re: Update PK Violation