blob: 6683518a225a4b3bd42dcfda7f5e510822c11ce6 [file] [log] [blame]
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;