Re: SQL question....

From: chester c young <chestercyoung(at)yahoo(dot)com>
To: Karl Denninger <karl(at)denninger(dot)net>
Cc: sql pgsql <pgsql-sql(at)postgresql(dot)org>
Subject: Re: SQL question....
Date: 2008-05-20 19:06:32
Message-ID: 624694.72418.qm@web54303.mail.re2.yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

> create table access (name text, address ip)
>
> I want to construct a SELECT statement which will return ONLY tuples
> containing IP and name pairs IF there is an IP that has two or more
> NAMEs associated with it.
>
>

many ways:

select a1.* from access a1 where exists(
select 1 from access a2 where a2.name=a2.name and a1.ip!=a2.ip );

select a1.*
from access a1
join access a2 using( name )
where a1.ip != a2.ip;

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Karl Denninger 2008-05-20 19:17:34 Re: SQL question....
Previous Message Karl Denninger 2008-05-20 18:14:47 SQL question....