MySQL Forums
Forum List  »  MySQL Query Browser

Re: Select problem - Is this possible?
Posted by: Chad Elkins
Date: June 24, 2005 12:07PM

I think this is what you are wanting to do Michael. This allows you to select both 23 and 24 in the same query

SELECT c.name
FROM c
INNER JOIN c ON c.id=e.c_id
WHERE e.type IN ('23', '24')
AND e.description IS NOT NULL

Options: ReplyQuote


Subject
Written By
Posted
Re: Select problem - Is this possible?
June 24, 2005 12:07PM


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.