select product.brand_name as c0 from product_class as product_class, product as product where (product_class.product_subcategory = 'Coffee' and product_class.product_category = 'Dry Goods' and product_class.product_department = 'Baking Goods' and product_class.product_family = 'Drink') and product.product_class_id = product_class.product_class_id group by product.brand_name order by product.brand_name ASC NULLS LAST; |