Re: Problem with phone list.

From: Mike Diehl <jdiehl(at)sandia(dot)gov>
To: "Fernando Hevia" <fhevia(at)ip-tel(dot)com(dot)ar>
Cc: "'SQL Postgresql List'" <pgsql-sql(at)postgresql(dot)org>
Subject: Re: Problem with phone list.
Date: 2007-08-16 06:11:36
Message-ID: 200708160011.36868.jdiehl@sandia.gov
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Yup, that did it. I don't know why I made it harder than it had to be.

Thank you.

Mike.

On Wednesday 15 August 2007 02:58:22 pm Fernando Hevia wrote:
> Try this:
>
> Select *
> from view v1
> where duration = (select max(duration) from view v2 where v2.phone_number =
> v1.phone_number)
>
> You could get more than one call listed for the same number if many calls
> match max(duration) for that number.
>
>
> -----Mensaje original-----
> De: pgsql-sql-owner(at)postgresql(dot)org [mailto:pgsql-sql-owner(at)postgresql(dot)org]
> En nombre de Mike Diehl
> Enviado el: Miércoles, 15 de Agosto de 2007 17:28
> Para: SQL Postgresql List
> Asunto: [SQL] Problem with phone list.
>
> Hi all.
>
> I've qot a problem I need to solve. I'm sure it's pretty simple; I just
> can't
> seem to get it, so here goes...
>
> I've got a table, actually a view that joins 3 tables, that contains a
> phone
>
> number, a unique id, and a call duration.
>
> The phone number has duplicates in it but the unique id is unique.
>
> I need to get a list of distinct phone numbers and the coorisponding
> largest
>
> call duration.
>
> I've got the idea that this should be a self-join on phone number where
> a.id<>b.id, but I just can't seem to get the max duration.
>
> Any hints would be much appreciated.
>
> Mike.
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Have you searched our list archives?
>
> http://archives.postgresql.org

--
Mike Diehl

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Jean-David Beyer 2007-08-16 13:05:24 Re: [SQL] Embedded C++ with ecpg?
Previous Message Javier Fonseca V. 2007-08-16 00:05:51 Re: Trigger Procedure Error: NEW used in query that is not in a rule