blob: 61e9ac0ef336cd3ca3ccee1166e7f01397d7f10e [file] [log] [blame]
select store.store_state as c0, store.store_city as c1, store.store_id as c2, sum(store.store_sqft) as m0 from store as store where store.store_state in ('CA', 'OR') and store.store_city in ('Portland', 'San Francisco') and store.store_id in (11, 14) group by store.store_state, store.store_city, store.store_id;