blob: 32651fadeb324e60ed93cca79b811952ffca72bf [file] [log] [blame]
select customer.state_province as c0 from promotion as promotion, sales_fact_1997 as sales_fact_1997, customer as customer where sales_fact_1997.promotion_id = promotion.promotion_id and promotion.promotion_name = 'Bag Stuffers' and sales_fact_1997.customer_id = customer.customer_id and customer.country = 'USA' group by customer.state_province order by customer.state_province ASC NULLS LAST;