blob: 45fd6ff0bf30cfd9c75d1831924746b913592bbf [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 = 'Beverages' and product_class.product_family = 'Drink') and UPPER(product_class.product_category) = UPPER('Carbonated Beverages') group by product_class.product_category order by product_class.product_category ASC NULLS LAST;