SQL |
SELECT DISTINCT subtyp2, count(distinct style_id) as itemCount
FROM web_all_products
WHERE dept='CAMP AND HIKE' and typ='SLEEP GEAR' and subtyp1='Sleeping Pads' and upper(subtyp2)<>'EMPTY' and style_id IN (563,564,567,613,1436,1445,1465,1466,1498,1499,4760,4761,4762,4764,4765,4766,4767,4768,11282,11283,11284,11285,11287,11351,15479,18997,19140)
GROUP BY subtyp2 |