SQL |
SELECT DISTINCT subtyp1, count(distinct style_id) as itemCount
FROM web_all_products
WHERE dept='MORE...' and typ='CLIMBING' and upper(subtyp1)<>'EMPTY' and style_id IN (656,657,679,703,710,729,730,731,732,761,782,3677,3691,6024,11239,11240,11241,11242,11243,11246,15632,15918,16061,16063,19495,4095)
GROUP BY subtyp1 |