From: | Philip Warner <pjw(at)rhyme(dot)com(dot)au> |
---|---|
To: | Chris Bitmead <chris(at)bitmead(dot)com>, pgsql-hackers(at)postgreSQL(dot)org, pgsql-sql(at)postgreSQL(dot)org |
Subject: | Re: [HACKERS] DISTINCT ON: speak now or forever hold your peace |
Date: | 2000-01-25 03:03:49 |
Message-ID: | 3.0.5.32.20000125140349.035768d0@mail.rhyme.com.au |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers pgsql-sql |
At 13:41 25/01/00 +1100, Chris Bitmead wrote:
>Tom Lane wrote:
>>
>> If I don't hear loud hollers very soon, I'm going to eliminate the
>> DISTINCT ON "feature" for 7.0. As previously discussed, this feature
>> is not standard SQL and has no clear semantic interpretation.
>
>I don't feel overly strongly about this, but if I remember right you can
>do some pretty cool things with this feature, provided you do define
>some semantics clearly. Like I think you can find the first tuple
>(given some ORDER BY clause) that fulfills some criteria. I think it is
>
>SELECT DISTINCT ON name name, age ORDER BY age;
>
>will get the youngest person. This might not be clearly specified now,
>but
>as long as it's useful, how about clearly defining it? I don't know that
>there is an easy way of doing this in standard SQL.
I don't know about PGSQL, but in other systems, I use:
Select <whatever> from <wherever> order by age asc limit to 1 row;
I *think* the PGSQL syntax is:
Select <whatever> from <wherever> order by age asc limit 1;
I have no idea if the optimizer does 'fast first' optimizations, so I don't
know how quick this would be on a large table.
----------------------------------------------------------------
Philip Warner | __---_____
Albatross Consulting Pty. Ltd. |----/ - \
(A.C.N. 008 659 498) | /(@) ______---_
Tel: +61-03-5367 7422 | _________ \
Fax: +61-03-5367 7430 | ___________ |
Http://www.rhyme.com.au | / \|
| --________--
PGP key available upon request, | /
and from pgp5.ai.mit.edu:11371 |/
From | Date | Subject | |
---|---|---|---|
Next Message | Michael Robinson | 2000-01-25 03:04:12 | Re: [HACKERS] fatal copy in/out error (6.5.3) |
Previous Message | Bruce Momjian | 2000-01-25 02:51:51 | Re: [HACKERS] Happy column dropping |
From | Date | Subject | |
---|---|---|---|
Next Message | Bruce Momjian | 2000-01-25 03:09:42 | Re: [HACKERS] DISTINCT ON: speak now or forever hold your peace |
Previous Message | Mike Mascari | 2000-01-25 02:50:45 | Re: [HACKERS] DISTINCT ON: speak now or forever hold your peace |