blob: 33b1109d3555b7b9aa78158c93e2653c8ff504f0 [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 = 'Pancake Mix' and product_class.product_category = 'Breakfast Foods' and product_class.product_department = 'Frozen Foods' and product_class.product_family = 'Food') and UPPER(product.brand_name) = UPPER('Big Time') group by product.brand_name order by product.brand_name ASC NULLS LAST;