blob: 0086a3cfe7aebb5e6dc18689f9474cef667e57d5 [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 = 'Preserves' and product_class.product_category = 'Jams and Jellies' and product_class.product_department = 'Baking Goods' and product_class.product_family = 'Food') and UPPER(product.brand_name) = UPPER('CDR') group by product.brand_name order by product.brand_name ASC NULLS LAST;