I have a table with my products and I'm trying to write a page that would pull bracelets with certain colors from the database. So here's what I have right now (in php):

$query = "SELECT * FROM products WHERE (products.colors LIKE '%black%')";

But I only want to select rows where the value for the column "category" equals "bracelet".

I've tried a few different things, but I keep getting warnings and errors. I appreciate any help you can give, thank you!

link|improve this question
You can combine conditions using AND or OR. – Felix Kling May 2 '10 at 17:34
feedback

2 Answers

up vote 10 down vote accepted
$query = "SELECT * FROM products WHERE products.colors LIKE '%black%' AND products.category = 'bracelet'";

There you go.

link|improve this answer
Thank you! I knew it had to be something simple, but for some reason I couldn't find it with all my mad Googling. – KeriLynn May 2 '10 at 17:35
feedback

You can do:

SELECT * FROM products 
WHERE colors LIKE '%black%' 
AND category = 'bracelet'
link|improve this answer
Thank you very much! – KeriLynn May 2 '10 at 17:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.