blob: 5ba24d8890d0f0635ce68ac0efb9111041b242bf [file] [log] [blame]
select product_class.product_category 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_department = 'Deli' and product_class.product_family = 'Food') and UPPER(product_class.product_category) = UPPER('Side Dishes') group by product_class.product_category order by product_class.product_category ASC NULLS LAST;