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 |
Thread: | |
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 | Date | Subject | |
---|---|---|---|
Next Message | Richard Huxton | 2002-10-31 19:09:11 | Re: How do you write this query? |
Previous Message | Achilleus Mantzios | 2002-10-31 16:07:35 | Re: [SQL] Returning a recordset and filling datatable in a .NET |