blob: c4fd2b2172c7085258731216afc7d1a6314794a3 [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 = 'Bagels' and product_class.product_category = 'Bread' and product_class.product_department = 'Baked Goods' and product_class.product_family = 'Food') and UPPER(product.brand_name) = UPPER('Colony') group by product.brand_name order by product.brand_name ASC NULLS LAST;