From: | Hrishikesh Deshmukh <hdeshmuk(at)gmail(dot)com> |
---|---|
To: | Dann Corbit <DCorbit(at)connx(dot)com> |
Cc: | Postgresql-General <pgsql-general(at)postgresql(dot)org> |
Subject: | Re: WHERE |
Date: | 2005-05-09 20:05:03 |
Message-ID: | 829d7fb6050509130598b7f43@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
Hi,
I have two tables with genes and its annotation and a bunch of
parameters, i wanted to know what are the genes common to these two
tables, so i wrote this query
create table temp as select gene from dataTable1 intersect
select gene from dataTable2;
The resulting table has only genes list (one column).
Now i want to retrieve gene annotation from datatable1, so how i guess
one has to write a query select geneAnnotation from dataTable1 where
genes= " temp table";
Would join do the trick!!!
Thanks,
Hrishi
On 5/9/05, Dann Corbit <DCorbit(at)connx(dot)com> wrote:
> Temp tables go away after the transaction completes.
> Perhaps you want a permanent table, dropped later with "drop table".
> Either that, or you may want to bracket the entire sequence in
> begin/end.
>
> I imagine that what you want to accomplish can be done.
>
> But your pseudo-code is very vague.
>
> Give the actual SQL to define the tables involved in your query.
>
> Then, describe carefully exactly what you want to accomplish.
>
> Then someone can give you a correct answer of exactly how to accomplish
> it.
>
> > -----Original Message-----
> > From: pgsql-general-owner(at)postgresql(dot)org [mailto:pgsql-general-
> > owner(at)postgresql(dot)org] On Behalf Of Hrishikesh Deshmukh
> > Sent: Monday, May 09, 2005 12:49 PM
> > To: Postgresql-General
> > Subject: [GENERAL] WHERE
> >
> > Hi All,
> >
> > How can one use a table created for saving the results for a query be
> > used in WHERE for subsequent query!!!
> >
> > Step 1) create table temp as select gene from dataTable1 intersect
> > select gene from dataTable2;
> >
> > Now temp has been created, temp has only one column which has list of
> > genes and nothing else but i want to retrieve annotation for the genes
> > in temp table.
> >
> > Is it possible to: select geneAnnotation from dataTable1 where genes =
> > "gene in temp table";!!!!!
> >
> > Or am i here in some serious soup!!! :((
> >
> > Thanks,
> > Hrishi
> >
> > ---------------------------(end of
> broadcast)---------------------------
> > TIP 8: explain analyze is your friend
>
From | Date | Subject | |
---|---|---|---|
Next Message | Dann Corbit | 2005-05-09 20:11:03 | Re: WHERE |
Previous Message | Dann Corbit | 2005-05-09 19:58:06 | Re: WHERE |