blob: b824a1e1e6587512d744d7c77979861bb13c7179 [file] [log] [blame]
select product.brand_name 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_subcategory = 'Soda' and product_class.product_category = 'Carbonated Beverages' and product_class.product_department = 'Beverages' and product_class.product_family = 'Drink') group by product.brand_name order by product.brand_name ASC NULLS LAST;