select store.store_city as c0 from store as store, sales_fact_1997 as sales_fact_1997, product_class as product_class, product as product, customer as customer where sales_fact_1997.store_id = store.store_id and store.store_state = 'CA' and sales_fact_1997.product_id = product.product_id and product.product_class_id = product_class.product_class_id and product_class.product_family = 'Drink' and sales_fact_1997.customer_id = customer.customer_id and customer.country = 'USA' group by store.store_city order by store.store_city ASC NULLS LAST; |