View Single Post
Old 02-19-2013, 05:44 AM   PM User | #9
Taipan
New Coder

 
Join Date: Mar 2004
Posts: 95
Thanks: 8
Thanked 0 Times in 0 Posts
Taipan is an unknown quantity at this point
Quote:
Originally Posted by Old Pedant View Post
Shoot, then you are making it *WAY* too hard!

Code:
SELECT 
    id
FROM 
    products 
    WHERE category_id = 3
    OR product_id IN ( 
        SELECT product_id 
        FROM products_extra_categories 
        WHERE category_id = 3 )
ORDER BY id
Thank you so much, so easy in hind sight
Taipan is offline   Reply With Quote