blob: 09796a55ac62504af27f8f3f6f6754ef24e7618d [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('Walla Walla') group by store.store_city order by store.store_city ASC NULLS LAST;