Re: How do you write this query?

Lists: pgsql-sql
From: Wei Weng <wweng(at)kencast(dot)com>
To: pgsql-sql(at)postgresql(dot)org
Subject: How do you write this query?
Date: 2002-10-31 18:21:25
Message-ID: 1036088486.13986.19.camel@Monet
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-sql

I have a table

Table "test"
Column | Type | Modifiers
--------+------------------------+----------
data | integer | not null
data1 | character varying(128) | not null
data2 | character varying(128) | not null

(Note: data is NOT the primary key.)

And
select * from test
returns

data | data1 | data2
------+-------+-------
1 | foo | bar
2 | greg | bar
3 | pooh | bar
4 | dah | peng

I need a query that returns me the "data1" that satisfies the logic of
the following pseudo code:

1: select data2 into @out from test where data1 = 'pooh'
2: select data1 from test where data2 = @out and data = 3

What do I do?

Thanks!

--
Wei Weng
Network Software Engineer
KenCast Inc.


From: Richard Huxton <dev(at)archonet(dot)com>
To: Wei Weng <wweng(at)kencast(dot)com>, pgsql-sql(at)postgresql(dot)org
Subject: Re: How do you write this query?
Date: 2002-10-31 19:09:11
Message-ID: 200210311909.11341.dev@archonet.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-sql

On Thursday 31 Oct 2002 6:21 pm, Wei Weng wrote:
> data | data1 | data2
> ------+-------+-------
> 1 | foo | bar
> 2 | greg | bar
> 3 | pooh | bar
> 4 | dah | peng
>
> I need a query that returns me the "data1" that satisfies the logic of
> the following pseudo code:
>
> 1: select data2 into @out from test where data1 = 'pooh'
> 2: select data1 from test where data2 = @out and data = 3

The most literal would be something like:

SELECT t1.data1 FROM test t1
WHERE t1.data=3 AND t1.data2 IN
(SELECT t2.data2
FROM test t2
WHERE t2.data1='pooh')

You can probably get away without the t1/t2 stuff but that should make things
clear.

Since Postgresql isn't very good at optimising IN, you might want to rewrite
it as an EXISTS query instead - see the manuals and mailing list archives for
details.

HTH
--
Richard Huxton


From: Jean-Luc Lachance <jllachan(at)nsd(dot)ca>
To: Richard Huxton <dev(at)archonet(dot)com>
Cc: Wei Weng <wweng(at)kencast(dot)com>, pgsql-sql(at)postgresql(dot)org
Subject: Re: How do you write this query?
Date: 2002-10-31 20:38:20
Message-ID: 3DC194BC.966E95CD@nsd.ca
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-sql

Thank goodness for nested select!

select data1 from test where data2 = ( select distinct data2 from test
where data1 = 'pooh') and data = 3;

JLL

Richard Huxton wrote:
>
> On Thursday 31 Oct 2002 6:21 pm, Wei Weng wrote:
> > data | data1 | data2
> > ------+-------+-------
> > 1 | foo | bar
> > 2 | greg | bar
> > 3 | pooh | bar
> > 4 | dah | peng
> >
> > I need a query that returns me the "data1" that satisfies the logic of
> > the following pseudo code:
> >
> > 1: select data2 into @out from test where data1 = 'pooh'
> > 2: select data1 from test where data2 = @out and data = 3
>
> The most literal would be something like:
>
> SELECT t1.data1 FROM test t1
> WHERE t1.data=3 AND t1.data2 IN
> (SELECT t2.data2
> FROM test t2
> WHERE t2.data1='pooh')
>
> You can probably get away without the t1/t2 stuff but that should make things
> clear.
>
> Since Postgresql isn't very good at optimising IN, you might want to rewrite
> it as an EXISTS query instead - see the manuals and mailing list archives for
> details.
>
> HTH
> --
> Richard Huxton
>
> ---------------------------(end of broadcast)---------------------------
> TIP 5: Have you checked our extensive FAQ?
>
> http://www.postgresql.org/users-lounge/docs/faq.html


From: Achilleus Mantzios <achill(at)matrix(dot)gatewaynet(dot)com>
To: Wei Weng <wweng(at)kencast(dot)com>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: How do you write this query?
Date: 2002-11-01 07:51:04
Message-ID: Pine.LNX.4.44.0211010949000.3526-100000@matrix.gatewaynet.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-sql

On 31 Oct 2002, Wei Weng wrote:

and yet another equivalent query:

SELECT f1.data1 from test f1,test f2 where f1.data=3 and f1.data2 =
f2.data2 and f2.data1='pooh';

> I have a table
>
> Table "test"
> Column | Type | Modifiers
> --------+------------------------+----------
> data | integer | not null
> data1 | character varying(128) | not null
> data2 | character varying(128) | not null
>
> (Note: data is NOT the primary key.)
>
> And
> select * from test
> returns
>
>
> data | data1 | data2
> ------+-------+-------
> 1 | foo | bar
> 2 | greg | bar
> 3 | pooh | bar
> 4 | dah | peng
>
> I need a query that returns me the "data1" that satisfies the logic of
> the following pseudo code:
>
> 1: select data2 into @out from test where data1 = 'pooh'
> 2: select data1 from test where data2 = @out and data = 3
>
>
> What do I do?
>
> Thanks!
>
> --
> Wei Weng
> Network Software Engineer
> KenCast Inc.
>
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 3: if posting/reading through Usenet, please send an appropriate
> subscribe-nomail command to majordomo(at)postgresql(dot)org so that your
> message can get through to the mailing list cleanly
>

==================================================================
Achilleus Mantzios
S/W Engineer
IT dept
Dynacom Tankers Mngmt
Nikis 4, Glyfada
Athens 16610
Greece
tel: +30-10-8981112
fax: +30-10-8981877
email: achill(at)matrix(dot)gatewaynet(dot)com
mantzios(at)softlab(dot)ece(dot)ntua(dot)gr