Re: Grouping Too Closely - Mailing list pgsql-sql

From Greg Sabino Mullane
Subject Re: Grouping Too Closely
Date
Msg-id a053b85772b71eaf158e0354551e72d2@biglumber.com
Whole thread Raw
In response to Re: Grouping Too Closely  ("Thomas F. O'Connell" <tfo@sitening.com>)
Responses assorted problems with intarray and other GiST contribs.  (PFC <lists@boutiquenumerique.com>)
List pgsql-sql
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1


> This doesn't give me quite what I'm looking for because I need there
> to be only one of each possible value of seq2 to be returned for each
> value of fkey.

Then perhaps just:

SELECT fkey, seq2, min(seq1)
FROM my_table
WHERE seq2 > 2
GROUP BY fkey, seq2
ORDER BY 1,2,3;

- --
Greg Sabino Mullane greg@turnstep.com
PGP Key: 0x14964AC8 200506250237
http://biglumber.com/x/web?pk=2529DF6AB8F79407E94445B4BC9B906714964AC8

-----BEGIN PGP SIGNATURE-----

iD8DBQFCvPwJvJuQZxSWSsgRAtcHAKDzl67Va8ABP4qyNpvFtWDpjmT/iwCg3D5J
kJMkDaELNZREh5+7OyJ/FSU=
=SChT
-----END PGP SIGNATURE-----




pgsql-sql by date:

Previous
From: "Thomas F. O'Connell"
Date:
Subject: Re: Grouping Too Closely
Next
From: Jan Wieck
Date:
Subject: Re: people who buy A, also buy C, D, E