blob: 326c1bf94b56539a5639741dbd4cde565dd54460 [file] [log] [blame]
select store.store_city as c0, store.store_postal_code as c1 from store as store where (store.store_state = 'CA') and UPPER(store.store_city) = UPPER('San Francisco') group by store.store_city, store.store_postal_code order by store.store_city ASC NULLS LAST;