blob: 6f06035be6b772e18238dc55fee6b928c6b59c46 [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 = 'Pots and Pans' and product_class.product_category = 'Kitchen Products' and product_class.product_department = 'Household' and product_class.product_family = 'Non-Consumable') and UPPER(product.brand_name) = UPPER('Cormorant') group by product.brand_name order by product.brand_name ASC NULLS LAST;