blob: 8305516998c80c65cf4fa2b85bd995b2dc41cd31 [file] [log] [blame]
select store.store_city as c0 from employee as employee, store as store where employee.store_id = store.store_id and (store.store_state = 'WA') and UPPER(store.store_city) = UPPER('Spokane') group by store.store_city order by store.store_city ASC NULLS LAST;