blob: 9f3c0eba83ba77056192a6ff202ff0675748e415 [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 = 'CA') and UPPER(store.store_city) = UPPER('Los Angeles') group by store.store_city order by store.store_city ASC NULLS LAST;