SELECT consumers.id FROM consumers, cases 
WHERE 
consumers.id=cases.consumers_id 
AND consumers.date_of_birth = ? 
AND cases.last_name = ?
AND cases.first_name = ?


John A. McCaskey

-----Original Message-----
From: Courtney Braafhart [mailto:[EMAIL PROTECTED] 
Sent: Monday, February 27, 2006 10:31 AM
To: mysql@lists.mysql.com
Subject: Connecting to queries into one

MY GOAL
                
                To collect any consumers.id WHERE date of birth, last
name and  
first name matches  what was entered by the user.  The trick is that  
date of birth lives in          the consumer table and last name and
first  
name lives in the cases table (which can be joined to consumers by  
consumers.id and cases.consumer_id).

                Can anyone think of way to do this in one mysql
statement instead  
of doing a loop?

                I am thinking it would work something like this:

                SELECT consumers.id FROM consumers WHERE date_of_birth =
? AND  
consumer.id = (SELECT consumer_id FROM cases WHERE last_name = ?

AND full_first_name = ? )

                Is there a way to form the above statement in MYSQL?

MY HOPE

                That there is a really obvious solution to this question
and that I  
am simply suffering from a case of the Mondays!


Thanks in advance!

Courtney Braafhart


-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:
http://lists.mysql.com/[EMAIL PROTECTED]


--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to