blob: 0935fa7a437232a0f9f5b1ba3ea2ad5c60cd5c47 [file] [log] [blame]
select product.product_name as c0 from product as product, product_class as product_class where product.product_class_id = product_class.product_class_id and (product.brand_name = 'American' and product_class.product_subcategory = 'Bologna' and product_class.product_category = 'Meat' and product_class.product_department = 'Deli' and product_class.product_family = 'Food') and UPPER(product.product_name) = UPPER('American Low Fat Bologna') group by product.product_name order by product.product_name ASC NULLS LAST;