SQL |
SELECT DISTINCT subtyp2, count(distinct style_id) as itemCount
FROM web_all_products
WHERE dept='CYCLING' and typ='ACCESSORIES' and subtyp1='Lubes & Degreasers' and upper(subtyp2)<>'EMPTY' and style_id IN (2051,6525,6526,6862,7607,7608,7740,7750,10511,15351,17153,18838,18939,19291,19569,19869,20389,20650,20651,20652,20654,20655,20657,20658,21737,21738)
GROUP BY subtyp2 |