SQL question.... - Mailing list pgsql-sql

From Karl Denninger
Subject SQL question....
Date
Msg-id 48331517.9000703@denninger.net
Whole thread Raw
Responses Re: SQL question....
Re: SQL question....
List pgsql-sql
.... assuming the following schema:

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.

I've not figured out how to do this; I can get a list of all IPs and 
names ordered by IP, which I could then parse with a different program 
(e.g. "Select name, address from access order by address"), but the idea 
of course is to do it with one SELECT statement and return only rows 
that have multiple names listed for a given IP.

-- 
Karl Denninger (karl@denninger.net)
http://www.denninger.net






pgsql-sql by date:

Previous
From: Bryce Nesbitt
Date:
Subject: Supplying a default on read, if a column does not exist in DB
Next
From: chester c young
Date:
Subject: Re: SQL question....