blob: 87a3ab25201125dc4c7a656b445b6b29e2220ad2 [file] [log] [blame]
select promotion.promotion_name as c0 from promotion as promotion, sales_fact_1997 as sales_fact_1997, product as product, customer as customer where sales_fact_1997.promotion_id = promotion.promotion_id and sales_fact_1997.product_id = product.product_id and product.product_name = 'Good Light Beer' and sales_fact_1997.customer_id = customer.customer_id and (customer.state_province = 'OR') group by promotion.promotion_name order by promotion.promotion_name ASC NULLS LAST;