blob: a62a66c689ed205b37259d331c0f6b15e9f8fd6e [file] [log] [blame]
select product_class.product_subcategory as c0 from product as product, product_class as product_class where product.product_class_id = product_class.product_class_id and (product_class.product_category = 'Meat' and product_class.product_department = 'Deli' and product_class.product_family = 'Food') and UPPER(product_class.product_subcategory) = UPPER('Hot Dogs') group by product_class.product_subcategory order by product_class.product_subcategory ASC NULLS LAST;