| From: | Alban Hertroys <dalroi(at)solfertje(dot)student(dot)utwente(dot)nl> |
|---|---|
| To: | A B <gentosaker(at)gmail(dot)com> |
| Cc: | postgresql Forums <pgsql-general(at)postgresql(dot)org> |
| Subject: | Re: How to delete rows number 2,3,4... |
| Date: | 2010-10-08 09:56:01 |
| Message-ID: | 0C75C0F0-A2D0-45D0-83EC-500B98FD17A5@solfertje.student.utwente.nl |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-general |
On 8 Oct 2010, at 8:59, A B wrote:
> Hello.
>
> I have a table
>
> create table foo (
> a serial,
> b int,
> c int,
> .... more fields ...);
>
> and now I wish to remove for each combination of b and c, all the
> rows except the one with the highest value of a.
Or said differently: Delete all the rows where there exists a value of A that is higher than the one in the current row, given B and C are equal.
In SQL that is:
DELETE FROM foo WHERE EXISTS (
SELECT 1
FROM foo
WHERE foo.a > a
AND foo.b = bar.b
AND foo.c = bar.c
)
Alban Hertroys
--
If you can't see the forest for the trees,
cut the trees and you'll see there is no forest.
!DSPAM:737,4caeeabc678306717112265!
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Wolfgang Keller | 2010-10-08 10:12:54 | Internationalisation of database content (text columns) |
| Previous Message | Dave Page | 2010-10-08 07:46:38 | Re: postgreSQL for Windows 7 |