MySQL Forums
Forum List  »  Perl

Re: need help with Mysql-perl
Posted by: Randy Clamons
Date: July 25, 2007 03:47PM

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.

Options: ReplyQuote


Subject
Written By
Posted
July 25, 2007 01:34PM
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.