select customer.city as c0 from product as product, sales_fact_1997 as sales_fact_1997, customer as customer where 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 customer.city order by customer.city ASC NULLS LAST; |