Re: need help with Mysql-perl
You'll need to join the two tables in your query something like this:
SELECT ProbeGene.ProbeID1,
ProbeGene.ProbeID2,
ProbeGene.r-value,
ProbeGene.p-value,
ProbeGene.e-value,
geneInfo.GeneID,
geneInfo.Description
FROM ProbeGene
JOIN geneInfo ON ProbeGene.GeneID = geneInfo.GeneID
You should be able to figure out the rest.
Subject
Written By
Posted
Re: need help with Mysql-perl
July 25, 2007 03:47PM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.