Re: complex queries
От | Sean Davis |
---|---|
Тема | Re: complex queries |
Дата | |
Msg-id | b85c18438306995c313a096eb8bc237d@mail.nih.gov обсуждение исходный текст |
Ответ на | complex queries (Kumar S <ps_postgres@yahoo.com>) |
Список | pgsql-novice |
On Mar 11, 2005, at 11:45 AM, Kumar S wrote: > bob=> select proc_exprs, proc_pval, seq_gene_symbol > from processed_data, sequence_annotation > where proc_pval < 0.05 AND > processed_data.seq_anno_id = > sequence_annotation.seq_gene_symbol; > > > proc_exprs | proc_pval | seq_gene_symbol > ------------+-----------+----------------- > (0 rows) > > > seq_gene_symbol is in sequence_annotation table and > its primary key is value of seq_anno_id. > You probably need to spend some time reading about queries in an SQL book (many of which are online), but in this particular case, it doesn't look like seq_gene_symbol is going to equal seq_anno_id. It looks like you want: processed_data.seq_anno_id=sequence_annotation.seq_anno_id Off-topic, but have you thought about looking at using BASE or CHADO to keep your microarray data? Sean
В списке pgsql-novice по дате отправления: