0% found this document useful (0 votes)
229 views378 pages

Clean Zip Codes Table

The document makes a series of SQL DELETE statements to remove records from the zip_codes table where the city or state values match examples like company names, military bases, Canadian provinces, etc. It begins by removing a foreign key constraint on another table and re-adding it to allow the zip_codes records to be deleted.

Uploaded by

Phil Pavlovic
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
229 views378 pages

Clean Zip Codes Table

The document makes a series of SQL DELETE statements to remove records from the zip_codes table where the city or state values match examples like company names, military bases, Canadian provinces, etc. It begins by removing a foreign key constraint on another table and re-adding it to allow the zip_codes records to be deleted.

Uploaded by

Phil Pavlovic
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 378

ALTER TABLE dispatch_zones__zip_codes__links DROP CONSTRAINT IF EXISTS

fk_dispatch_zones__zip_codes__links__zip_codes;
ALTER TABLE dispatch_zones__zip_codes__links
ADD CONSTRAINT fk_dispatch_zones__zip_codes__links__zip_codes FOREIGN KEY
(zip_code_id)
REFERENCES zip_codes (id) MATCH FULL
ON UPDATE NO ACTION ON DELETE CASCADE;

delete from zip_codes where city = '88' and state = 'KY';


delete from zip_codes where city = 'A&T State University' and state = 'NC';
delete from zip_codes where city = 'AARP' and state = 'CA';
delete from zip_codes where city = 'ABMPS' and state = 'MN';
delete from zip_codes where city = 'AMF' and state = 'OH';
delete from zip_codes where city = 'AMF/JFK Incoming Express Mai' and state = 'NY';
delete from zip_codes where city = 'APG' and state = 'MD';
delete from zip_codes where city = 'ASU' and state = 'AZ';
delete from zip_codes where city = 'ASW Training Ctr' and state = 'CA';
delete from zip_codes where city = 'Asphodel-norwood' and state = 'ON';
delete from zip_codes where city = 'Atlanta NDC' and state = 'GA';
delete from zip_codes where city = 'Augusta' and state = 'ON';
delete from zip_codes where city = 'B M G' and state = 'IN';
delete from zip_codes where city = 'BOK Mail Service' and state = 'OK';
delete from zip_codes where city = 'BTV' and state = 'VT';
delete from zip_codes where city = 'BVL' and state = 'FL';
delete from zip_codes where city = 'Baker-Taylor' and state = 'GA';
delete from zip_codes where city = 'Batnuni Lake' and state = 'BC';
delete from zip_codes where city = 'Bellerose Village' and state = 'NY';
delete from zip_codes where city = 'Blue Cross Blue Shield OD SC' and state = 'SC';
delete from zip_codes where city = 'Blue Cross Blue Shield Of CO' and state = 'CO';
delete from zip_codes where city = 'Bo Santa Ana III' and state = 'PR';
delete from zip_codes where city = 'Branch Bank And Trust (BB&T)' and state = 'NC';
delete from zip_codes where city = 'Brockton' and state = 'ON';
delete from zip_codes where city = 'Brooks AFB Branch' and state = 'TX';
delete from zip_codes where city = 'CDA' and state = 'ID';
delete from zip_codes where city = 'CMAFB' and state = 'CO';
delete from zip_codes where city = 'CNB' and state = 'LA';
delete from zip_codes where city = 'CO Spgs Utilities' and state = 'CO';
delete from zip_codes where city = 'CO Spgs' and state = 'CO';
delete from zip_codes where city = 'CSI' and state = 'ID';
delete from zip_codes where city = 'CSOC' and state = 'CO';
delete from zip_codes where city = 'Canton Bedford' and state = 'QC';
delete from zip_codes where city = 'Canton Stanstead' and state = 'QC';
delete from zip_codes where city = 'Canton-de-hatley' and state = 'QC';
delete from zip_codes where city = 'Casa Rio' and state = 'SK';
delete from zip_codes where city = 'City Of WB' and state = 'PA';
delete from zip_codes where city = 'Ciudad Central II' and state = 'PR';
delete from zip_codes where city = 'Columbia AMF' and state = 'SC';
delete from zip_codes where city = 'Columbia Gas Of PA' and state = 'PA';
delete from zip_codes where city = 'Corman Park' and state = 'SK';
delete from zip_codes where city = 'DFW Airport' and state = 'TX';
delete from zip_codes where city = 'DFW' and state = 'TX';
delete from zip_codes where city = 'DM AFB' and state = 'AZ';
delete from zip_codes where city = 'DSU' and state = 'MS';
delete from zip_codes where city = 'DTE Energy Brm' and state = 'MI';
delete from zip_codes where city = 'DTE Energy' and state = 'MI';
delete from zip_codes where city = 'DTE' and state = 'MI';
delete from zip_codes where city = 'Dept Commerce Outside HQ' and state = 'DC';
delete from zip_codes where city = 'Dept HS' and state = 'MD';
delete from zip_codes where city = 'Dept HS' and state = 'VA';
delete from zip_codes where city = 'Deschambault Lake' and state = 'SK';
delete from zip_codes where city = 'Dhs' and state = 'MD';
delete from zip_codes where city = 'Dhs' and state = 'VA';
delete from zip_codes where city = 'Dillon' and state = 'SK';
delete from zip_codes where city = 'District Director IRS' and state = 'DC';
delete from zip_codes where city = 'Dsl De Grand Sault-Fa' and state = 'NB';
delete from zip_codes where city = 'Duke Field AFS' and state = 'FL';
delete from zip_codes where city = 'ETSU' and state = 'TN';
delete from zip_codes where city = 'East Stewiacke' and state = 'NS';
delete from zip_codes where city = 'East TN State Univ' and state = 'TN';
delete from zip_codes where city = 'Elsipogtog Firsaint N' and state = 'NB';
delete from zip_codes where city = 'Emerald Park' and state = 'SK';
delete from zip_codes where city = 'Essipit' and state = 'QC';
delete from zip_codes where city = 'F M' and state = 'FL';
delete from zip_codes where city = 'FBI' and state = 'DC';
delete from zip_codes where city = 'FBI' and state = 'WV';
delete from zip_codes where city = 'FDIC' and state = 'VA';
delete from zip_codes where city = 'FDL' and state = 'WI';
delete from zip_codes where city = 'FHA Comptroller' and state = 'DC';
delete from zip_codes where city = 'FMY' and state = 'FL';
delete from zip_codes where city = 'FT McClellan' and state = 'AL';
delete from zip_codes where city = 'FX Station' and state = 'VA';
delete from zip_codes where city = 'Ferland' and state = 'SK';
delete from zip_codes where city = 'GE Capital' and state = 'FL';
delete from zip_codes where city = 'GECC' and state = 'CT';
delete from zip_codes where city = 'GFAFB Postal Service Center' and state = 'ND';
delete from zip_codes where city = 'GFAFB' and state = 'ND';
delete from zip_codes where city = 'GMAC' and state = 'NC';
delete from zip_codes where city = 'GMF' and state = 'LA';
delete from zip_codes where city = 'GPO' and state = 'NY';
delete from zip_codes where city = 'GPO' and state = 'PR';
delete from zip_codes where city = 'GTE' and state = 'TX';
delete from zip_codes where city = 'Gambier Island' and state = 'BC';
delete from zip_codes where city = 'Georgian Bluffs' and state = 'ON';
delete from zip_codes where city = 'Gilmanton IW' and state = 'NH';
delete from zip_codes where city = 'Grand Falls-Grand Sau' and state = 'NB';
delete from zip_codes where city = 'Grand Saint Antoine N' and state = 'NB';
delete from zip_codes where city = 'Grand Sault-Grand Fal' and state = 'NB';
delete from zip_codes where city = 'Greater Madawaska' and state = 'ON';
delete from zip_codes where city = 'Greensboro NDC' and state = 'NC';
delete from zip_codes where city = 'Guelph-eramosa' and state = 'ON';
delete from zip_codes where city = 'Gunter ECI' and state = 'AL';
delete from zip_codes where city = 'H P' and state = 'NC';
delete from zip_codes where city = 'HBJ' and state = 'FL';
delete from zip_codes where city = 'HHS' and state = 'MD';
delete from zip_codes where city = 'HP Enterprise Services' and state = 'IA';
delete from zip_codes where city = 'HP' and state = 'IA';
delete from zip_codes where city = 'HP-Proactive' and state = 'IA';
delete from zip_codes where city = 'HP-SC/YE' and state = 'IA';
delete from zip_codes where city = 'HS' and state = 'AR';
delete from zip_codes where city = 'HSBC Atrium' and state = 'NY';
delete from zip_codes where city = 'Hamilton Township' and state = 'ON';
delete from zip_codes where city = 'Hbmtwp' and state = 'ON';
delete from zip_codes where city = 'Hideaway Hls' and state = 'OH';
delete from zip_codes where city = 'I B M' and state = 'CA';
delete from zip_codes where city = 'IL Dept Reg And Educ' and state = 'IL';
delete from zip_codes where city = 'IRS' and state = 'CT';
delete from zip_codes where city = 'ISAFA' and state = 'NV';
delete from zip_codes where city = 'ISU' and state = 'ID';
delete from zip_codes where city = 'Indiana Univ Of PA' and state = 'PA';
delete from zip_codes where city = 'Ireton' and state = 'NS';
delete from zip_codes where city = 'Island Lake' and state = 'SK';
delete from zip_codes where city = 'JB Lewis McChord' and state = 'WA';
delete from zip_codes where city = 'JBAB' and state = 'DC';
delete from zip_codes where city = 'JBER' and state = 'AK';
delete from zip_codes where city = 'JBLM' and state = 'WA';
delete from zip_codes where city = 'JC Penney Company' and state = 'TX';
delete from zip_codes where city = 'JC Penney' and state = 'WI';
delete from zip_codes where city = 'JC' and state = 'TN';
delete from zip_codes where city = 'JF Kennedy Ap' and state = 'NY';
delete from zip_codes where city = 'JPV' and state = 'FL';
delete from zip_codes where city = 'JT Weeker ISC' and state = 'IL';
delete from zip_codes where city = 'Joint Base Lewis McChord' and state = 'WA';
delete from zip_codes where city = 'KC' and state = 'MO';
delete from zip_codes where city = 'Kilmer GMF' and state = 'NJ';
delete from zip_codes where city = 'Kingsclear Firsaint N' and state = 'NB';
delete from zip_codes where city = 'LA Dept Of Revenue' and state = 'LA';
delete from zip_codes where city = 'LA Dept Reven' and state = 'LA';
delete from zip_codes where city = 'LA International Service Ctr' and state = 'CA';
delete from zip_codes where city = 'LA Lottery' and state = 'LA';
delete from zip_codes where city = 'LA Power Light' and state = 'LA';
delete from zip_codes where city = 'LA ST Univ' and state = 'LA';
delete from zip_codes where city = 'LA Tech' and state = 'LA';
delete from zip_codes where city = 'LB' and state = 'CA';
delete from zip_codes where city = 'LDHL' and state = 'FL';
delete from zip_codes where city = 'LDS Hospital' and state = 'UT';
delete from zip_codes where city = 'LEH' and state = 'NJ';
delete from zip_codes where city = 'LR Airforce Base' and state = 'AR';
delete from zip_codes where city = 'LRAFB' and state = 'AR';
delete from zip_codes where city = 'LS' and state = 'MO';
delete from zip_codes where city = 'LSI' and state = 'TX';
delete from zip_codes where city = 'LSL' and state = 'MO';
delete from zip_codes where city = 'La Visitation-de-l''ile-dupas' and state =
'QC';
delete from zip_codes where city = 'Lac Ste. Anne County' and state = 'AB';
delete from zip_codes where city = 'Lake Of Bays' and state = 'ON';
delete from zip_codes where city = 'Little Salmon River W' and state = 'NB';
delete from zip_codes where city = 'MAFB' and state = 'ND';
delete from zip_codes where city = 'MCB Quantico' and state = 'VA';
delete from zip_codes where city = 'MCRD San Diego' and state = 'CA';
delete from zip_codes where city = 'MD Motor Vehicle Admin' and state = 'MD';
delete from zip_codes where city = 'MDT' and state = 'PA';
delete from zip_codes where city = 'ME State Agencies' and state = 'ME';
delete from zip_codes where city = 'MGM Properties' and state = 'NV';
delete from zip_codes where city = 'MI Department Of Revenue' and state = 'MI';
delete from zip_codes where city = 'MI Metro' and state = 'MI';
delete from zip_codes where city = 'MO Dept Of Revenue' and state = 'MO';
delete from zip_codes where city = 'MS City' and state = 'UT';
delete from zip_codes where city = 'MS State Univ' and state = 'MS';
delete from zip_codes where city = 'MS State' and state = 'MS';
delete from zip_codes where city = 'MSC' and state = 'UT';
delete from zip_codes where city = 'MSU' and state = 'MS';
delete from zip_codes where city = 'Maxwell AFB Gunter Annex' and state = 'AL';
delete from zip_codes where city = 'Mc Grath' and state = 'AK';
delete from zip_codes where city = 'McAlistervle' and state = 'PA';
delete from zip_codes where city = 'McBeth' and state = 'TX';
delete from zip_codes where city = 'McCarran Airport' and state = 'NV';
delete from zip_codes where city = 'McClellandtwn' and state = 'PA';
delete from zip_codes where city = 'McClellanvle' and state = 'SC';
delete from zip_codes where city = 'McColl' and state = 'TX';
delete from zip_codes where city = 'McConnelsvle' and state = 'OH';
delete from zip_codes where city = 'McCormick Correctional Inst' and state = 'SC';
delete from zip_codes where city = 'McCune' and state = 'KS';
delete from zip_codes where city = 'McCutchn Fld' and state = 'NC';
delete from zip_codes where city = 'McDavitt' and state = 'MN';
delete from zip_codes where city = 'McDonald Obs' and state = 'TX';
delete from zip_codes where city = 'McDonald Observatory' and state = 'TX';
delete from zip_codes where city = 'McDougal Correctional Fclty' and state = 'CT';
delete from zip_codes where city = 'McEntire Air National Guard' and state = 'SC';
delete from zip_codes where city = 'McGee' and state = 'MS';
delete from zip_codes where city = 'McGhee Tyson Ang Base' and state = 'TN';
delete from zip_codes where city = 'McGraw Hill Companies' and state = 'IA';
delete from zip_codes where city = 'McMicken Heights' and state = 'WA';
delete from zip_codes where city = 'McMillan' and state = 'WI';
delete from zip_codes where city = 'McMurry Univ' and state = 'TX';
delete from zip_codes where city = 'McNeese State University' and state = 'LA';
delete from zip_codes where city = 'McNett' and state = 'PA';
delete from zip_codes where city = 'McVeytwn' and state = 'PA';
delete from zip_codes where city = 'McZena' and state = 'OH';
delete from zip_codes where city = 'Mcchord AFB' and state = 'WA';
delete from zip_codes where city = 'Mccordsville' and state = 'IN';
delete from zip_codes where city = 'Mckee Half FL' and state = 'PA';
delete from zip_codes where city = 'Mcnab/braeside' and state = 'ON';
delete from zip_codes where city = 'Medical University of SC' and state = 'SC';
delete from zip_codes where city = 'Modesto BRM ZIP' and state = 'CA';
delete from zip_codes where city = 'N KC' and state = 'MO';
delete from zip_codes where city = 'N LR' and state = 'AR';
delete from zip_codes where city = 'N S T L' and state = 'MS';
delete from zip_codes where city = 'NAS Meridian' and state = 'MS';
delete from zip_codes where city = 'NAS/JRB' and state = 'TX';
delete from zip_codes where city = 'NAU' and state = 'AZ';
delete from zip_codes where city = 'NC Baptist Hospital' and state = 'NC';
delete from zip_codes where city = 'NC State Univ' and state = 'NC';
delete from zip_codes where city = 'NC State University' and state = 'NC';
delete from zip_codes where city = 'NCSU Student Housing' and state = 'NC';
delete from zip_codes where city = 'ND State College of Science' and state = 'ND';
delete from zip_codes where city = 'NETC' and state = 'RI';
delete from zip_codes where city = 'NH Dept of Safety' and state = 'NH';
delete from zip_codes where city = 'NKC' and state = 'MO';
delete from zip_codes where city = 'NNJ Metro P&DC' and state = 'NJ';
delete from zip_codes where city = 'NSL' and state = 'UT';
delete from zip_codes where city = 'NSU' and state = 'LA';
delete from zip_codes where city = 'NW Jr College' and state = 'MS';
delete from zip_codes where city = 'NW Point' and state = 'MO';
delete from zip_codes where city = 'NY Mills' and state = 'NY';
delete from zip_codes where city = 'NY Park And Rec Dept' and state = 'NY';
delete from zip_codes where city = 'NY Standards And Purc' and state = 'NY';
delete from zip_codes where city = 'NYA' and state = 'MN';
delete from zip_codes where city = 'NYS Dept Of Tax & Finance' and state = 'NY';
delete from zip_codes where city = 'NYS Tax Processing Ctr' and state = 'NY';
delete from zip_codes where city = 'National Space Technology LA' and state = 'MS';
delete from zip_codes where city = 'North KC' and state = 'MO';
delete from zip_codes where city = 'North Kawartha' and state = 'ON';
delete from zip_codes where city = 'Northern Bruce Peninsula' and state = 'ON';
delete from zip_codes where city = 'Norwood Young America' and state = 'MN';
delete from zip_codes where city = 'Notre-dame-des-sept-douleurs' and state = 'QC';
delete from zip_codes where city = 'OH City' and state = 'OH';
delete from zip_codes where city = 'OKC' and state = 'OK';
delete from zip_codes where city = 'P E Chevron CS' and state = 'FL';
delete from zip_codes where city = 'P J S' and state = 'NY';
delete from zip_codes where city = 'PA Blue Shield' and state = 'PA';
delete from zip_codes where city = 'PDP Group Inc' and state = 'MD';
delete from zip_codes where city = 'PJS' and state = 'NY';
delete from zip_codes where city = 'PNC Financial' and state = 'DC';
delete from zip_codes where city = 'PRS' and state = 'DC';
delete from zip_codes where city = 'PTO Nuevo' and state = 'PR';
delete from zip_codes where city = 'Packard Elec Co Div GM' and state = 'OH';
delete from zip_codes where city = 'Peace River Regional District' and state =
'BC';
delete from zip_codes where city = 'Pikwakanagan' and state = 'ON';
delete from zip_codes where city = 'Pinehouse Lake' and state = 'SK';
delete from zip_codes where city = 'Port Hueneme CBC Base' and state = 'CA';
delete from zip_codes where city = 'Port Hueneme Cbc Base' and state = 'CA';
delete from zip_codes where city = 'Prince Twp' and state = 'ON';
delete from zip_codes where city = 'Publishers Clearing Hse BRM' and state = 'NY';
delete from zip_codes where city = 'QVC' and state = 'NC';
delete from zip_codes where city = 'Quinte West' and state = 'ON';
delete from zip_codes where city = 'RBC' and state = 'AL';
delete from zip_codes where city = 'RCA MFG CO' and state = 'IN';
delete from zip_codes where city = 'RMX' and state = 'TX';
delete from zip_codes where city = 'RR Donnelly' and state = 'KY';
delete from zip_codes where city = 'RSM' and state = 'CA';
delete from zip_codes where city = 'RTP' and state = 'NC';
delete from zip_codes where city = 'RVC' and state = 'NY';
delete from zip_codes where city = 'Residence Halls Univ of CO' and state = 'CO';
delete from zip_codes where city = 'Rines Creek' and state = 'NS';
delete from zip_codes where city = 'Rota' and state = 'MP';
delete from zip_codes where city = 'S BTV' and state = 'VT';
delete from zip_codes where city = 'S F A U' and state = 'TX';
delete from zip_codes where city = 'S F A' and state = 'TX';
delete from zip_codes where city = 'SBC ATT' and state = 'TX';
delete from zip_codes where city = 'SC State University' and state = 'SC';
delete from zip_codes where city = 'SCI Cresson' and state = 'PA';
delete from zip_codes where city = 'SF Austin Univ' and state = 'TX';
delete from zip_codes where city = 'SF' and state = 'NM';
delete from zip_codes where city = 'SFA' and state = 'TX';
delete from zip_codes where city = 'SJAFB' and state = 'NC';
delete from zip_codes where city = 'SLC' and state = 'UT';
delete from zip_codes where city = 'SLU' and state = 'LA';
delete from zip_codes where city = 'SMC' and state = 'VT';
delete from zip_codes where city = 'SMSU' and state = 'MO';
delete from zip_codes where city = 'SSF' and state = 'CA';
delete from zip_codes where city = 'STW' and state = 'OK';
delete from zip_codes where city = 'SW MO State' and state = 'MO';
delete from zip_codes where city = 'Saint Denis' and state = 'SK';
delete from zip_codes where city = 'Saint Isidore De Bell' and state = 'SK';
delete from zip_codes where city = 'Saint Omer L''Islet' and state = 'QC';
delete from zip_codes where city = 'Saint Pierre Ile D''Or' and state = 'QC';
delete from zip_codes where city = 'Saint-cyprien-de-napierville' and state = 'QC';
delete from zip_codes where city = 'Saint-eugene-d''argentenay' and state = 'QC';
delete from zip_codes where city = 'Sainte Brigitte Des S' and state = 'QC';
delete from zip_codes where city = 'Sainte Felicite De L''' and state = 'QC';
delete from zip_codes where city = 'Sainte Monique Lac Sa' and state = 'QC';
delete from zip_codes where city = 'Sainte Sophie D''Halif' and state = 'QC';
delete from zip_codes where city = 'Sainte-anne-de-la-pocatiere' and state = 'QC';
delete from zip_codes where city = 'Sainte-elizabeth-de-warwick' and state = 'QC';
delete from zip_codes where city = 'Shamong' and state = 'NJ';
delete from zip_codes where city = 'Shared BRM' and state = 'NY';
delete from zip_codes where city = 'Shortts Lake' and state = 'NS';
delete from zip_codes where city = 'So OH Correctional Facility' and state = 'OH';
delete from zip_codes where city = 'Sorel Tracy' and state = 'QC';
delete from zip_codes where city = 'South Bruce Peninsula' and state = 'ON';
delete from zip_codes where city = 'South Harrison Township' and state = 'NJ';
delete from zip_codes where city = 'Southampton' and state = 'NJ';
delete from zip_codes where city = 'St-joseph-de-la-pointe-de-levy' and state =
'QC';
delete from zip_codes where city = 'State Of IL' and state = 'IL';
delete from zip_codes where city = 'Stockton BRM Zip' and state = 'CA';
delete from zip_codes where city = 'Suburban Maryland Facili' and state = 'MD';
delete from zip_codes where city = 'T A F B' and state = 'OK';
delete from zip_codes where city = 'TN Dept Revenue' and state = 'TN';
delete from zip_codes where city = 'TN State Government' and state = 'TN';
delete from zip_codes where city = 'TV Guide BRM' and state = 'PA';
delete from zip_codes where city = 'TV Guide' and state = 'PA';
delete from zip_codes where city = 'TX A & M University' and state = 'TX';
delete from zip_codes where city = 'TX Dept Of Motor Vehicles' and state = 'TX';
delete from zip_codes where city = 'Trent Lakes' and state = 'ON';
delete from zip_codes where city = 'Tupper Lake' and state = 'NS';
delete from zip_codes where city = 'UC Berkeley' and state = 'CA';
delete from zip_codes where city = 'UCA' and state = 'AR';
delete from zip_codes where city = 'UCF' and state = 'FL';
delete from zip_codes where city = 'UCSB Student Dorm Boxes' and state = 'CA';
delete from zip_codes where city = 'UMC Hospital Clinics' and state = 'MO';
delete from zip_codes where city = 'UN VA Med Ctr' and state = 'VA';
delete from zip_codes where city = 'UNC Charlotte' and state = 'NC';
delete from zip_codes where city = 'UNM' and state = 'NM';
delete from zip_codes where city = 'URB Las Campinas II' and state = 'PR';
delete from zip_codes where city = 'US Army Tank-Auto Command' and state = 'MI';
delete from zip_codes where city = 'USC' and state = 'SC';
delete from zip_codes where city = 'USPS BMC' and state = 'IA';
delete from zip_codes where city = 'USPS HR Shared Svcs' and state = 'NC';
delete from zip_codes where city = 'UT SW Medical Center' and state = 'TX';
delete from zip_codes where city = 'UVM' and state = 'VT';
delete from zip_codes where city = 'Univ NV Las Vegas' and state = 'NV';
delete from zip_codes where city = 'Univ Of FL Student Dorms' and state = 'FL';
delete from zip_codes where city = 'Univ Of NC' and state = 'NC';
delete from zip_codes where city = 'Univ of CA Riverside' and state = 'CA';
delete from zip_codes where city = 'Univ of MD Baltimore County' and state = 'MD';
delete from zip_codes where city = 'Univ of NE Med Center' and state = 'NE';
delete from zip_codes where city = 'Univ of TN' and state = 'TN';
delete from zip_codes where city = 'Univ of VA Med Ctr' and state = 'VA';
delete from zip_codes where city = 'University of CT Health Ctr' and state = 'CT';
delete from zip_codes where city = 'University of CT' and state = 'CT';
delete from zip_codes where city = 'University of Central AR' and state = 'AR';
delete from zip_codes where city = 'University of Central FL' and state = 'FL';
delete from zip_codes where city = 'University of KY Agri Dept' and state = 'KY';
delete from zip_codes where city = 'University of KY Med Ctr' and state = 'KY';
delete from zip_codes where city = 'University of KY Res Halls' and state = 'KY';
delete from zip_codes where city = 'University of KY' and state = 'KY';
delete from zip_codes where city = 'University of NC' and state = 'NC';
delete from zip_codes where city = 'University of SC' and state = 'SC';
delete from zip_codes where city = 'University of Southern CA' and state = 'CA';
delete from zip_codes where city = 'University of TN' and state = 'TN';
delete from zip_codes where city = 'Ute Mountain Indian Reservat' and state = 'CO';
delete from zip_codes where city = 'VAB' and state = 'VA';
delete from zip_codes where city = 'VC Highlands' and state = 'NV';
delete from zip_codes where city = 'VCU/MCV East' and state = 'VA';
delete from zip_codes where city = 'VCU/West' and state = 'VA';
delete from zip_codes where city = 'Village Des Athletes' and state = 'QC';
delete from zip_codes where city = 'Vimont' and state = 'QC';
delete from zip_codes where city = 'WBAMC' and state = 'TX';
delete from zip_codes where city = 'WDBG' and state = 'VA';
delete from zip_codes where city = 'WDM' and state = 'IA';
delete from zip_codes where city = 'WE Energies' and state = 'WI';
delete from zip_codes where city = 'WJ' and state = 'UT';
delete from zip_codes where city = 'WLA' and state = 'CA';
delete from zip_codes where city = 'WP Air Base' and state = 'OH';
delete from zip_codes where city = 'WS State Univ' and state = 'NC';
delete from zip_codes where city = 'WW Grainger Inc' and state = 'IL';
delete from zip_codes where city = 'WW Grainger Inc' and state = 'IN';
delete from zip_codes where city = 'Washington DC Brm' and state = 'DC';
delete from zip_codes where city = 'Washington DC Post Office' and state = 'DC';
delete from zip_codes where city = 'Wemotaci' and state = 'QC';
delete from zip_codes where city = 'Wendake' and state = 'QC';
delete from zip_codes where city = 'West Creston' and state = 'BC';
delete from zip_codes where city = 'West Windsor' and state = 'NJ';
delete from zip_codes where city = 'Wilford Hall USAF Hosp' and state = 'TX';
delete from zip_codes where city = 'Woodstock' and state = 'NS';
delete from zip_codes where city = 'Woodvale' and state = 'NS';
delete from zip_codes where city = 'XL Ranch Indian Reservation' and state = 'CA';
delete from zip_codes where city = 'YPG' and state = 'AZ';
delete from zip_codes where city = 'Yellow Quill' and state = 'SK';
delete from zip_codes where city = 'Zablocki VA Medical Ctr' and state = 'WI';
delete from zip_codes where zip_code = 'Grand Sault-Grand Fal' and city = 'NB';
delete from zip_codes where zip_code = 'Saint Isidore De Bell' and city = 'SK';
delete from zip_codes where zip_code = 'Saint Omer L''Islet' and city = 'QC';

delete from zip_codes where city = 'Algonquin Highlands' and state = 'ON' and
zip_code = 'K0M 1J2';
delete from zip_codes where city = 'Aweres Twp' and state = 'ON' and zip_code =
'P6A 5K7';
delete from zip_codes where city = 'Aweres Twp' and state = 'ON' and zip_code =
'P6A 6J8';
delete from zip_codes where city = 'Batchewana First Nation' and state = 'ON' and
zip_code = 'P6A 0A4';
delete from zip_codes where city = 'Batchewana First Nation' and state = 'ON' and
zip_code = 'P6A 0A5';
delete from zip_codes where city = 'Batchewana First Nation' and state = 'ON' and
zip_code = 'P6A 6J8';
delete from zip_codes where city = 'Batchewana First Nation' and state = 'ON' and
zip_code = 'P6A 0B9';
delete from zip_codes where city = 'Batchewana First Nation' and state = 'ON' and
zip_code = 'P6A 6Z1';
delete from zip_codes where city = 'Batchewana First Nation' and state = 'ON' and
zip_code = 'P6A 5K9';
delete from zip_codes where city = 'Batchewana First Nation' and state = 'ON' and
zip_code = 'P6A 6Z3';
delete from zip_codes where city = 'Blue Mountains' and state = 'ON' and zip_code =
'L9Y 0R7';
delete from zip_codes where city = 'Blue Mountains' and state = 'ON' and zip_code =
'L9Y 3Y9';
delete from zip_codes where city = 'Casa Rio' and state = 'SK' and zip_code = 'S7T
1A7';
delete from zip_codes where city = 'Cookshire-eaton' and state = 'QC' and zip_code
= 'J0B 3A0';
delete from zip_codes where city = 'Corman Park' and state = 'SK' and zip_code =
'S7T 1C8';
delete from zip_codes where city = 'Corman Park' and state = 'SK' and zip_code =
'S7T 1A1';
delete from zip_codes where city = 'County Of Grande Prairie No. 1' and state =
'AB' and zip_code = 'T8X 4G8';
delete from zip_codes where city = 'County Of Grande Prairie No. 1' and state =
'AB' and zip_code = 'T8X 4P3';
delete from zip_codes where city = 'County Of Grande Prairie No. 1' and state =
'AB' and zip_code = 'T8X 4L6';
delete from zip_codes where city = 'County Of Grande Prairie No. 1' and state =
'AB' and zip_code = 'T8X 4R3';
delete from zip_codes where city = 'Cypress County' and state = 'AB' and zip_code =
'T1A 8N5';
delete from zip_codes where city = 'Cypress County' and state = 'AB' and zip_code =
'T1B 0K1';
delete from zip_codes where city = 'Cypress County' and state = 'AB' and zip_code =
'T1B 0K2';
delete from zip_codes where city = 'Cypress County' and state = 'AB' and zip_code =
'T1B 0K5';
delete from zip_codes where city = 'Cypress County' and state = 'AB' and zip_code =
'T1B 0K9';
delete from zip_codes where city = 'Cypress County' and state = 'AB' and zip_code =
'T1B 0L2';
delete from zip_codes where city = 'Cypress County' and state = 'AB' and zip_code =
'T1B 0L4';
delete from zip_codes where city = 'Cypress County' and state = 'AB' and zip_code =
'T1B 0L5';
delete from zip_codes where city = 'Douro-dummer' and state = 'ON' and zip_code =
'K0L 3A0';
delete from zip_codes where city = 'Douro-dummer' and state = 'ON' and zip_code =
'K0L 2B0';
delete from zip_codes where city = 'Douro-dummer' and state = 'ON' and zip_code =
'K0L 2H0';
delete from zip_codes where city = 'East Lawrencetown' and state = 'NS' and
zip_code = 'B2Z 1R1';
delete from zip_codes where city = 'Emerald Park' and state = 'SK' and zip_code =
'S4L 0C4';
delete from zip_codes where city = 'Fort William First Nation' and state = 'ON' and
zip_code = 'P7J 1B6';
delete from zip_codes where city = 'Fort William First Nation' and state = 'ON' and
zip_code = 'P7J 1C1';
delete from zip_codes where city = 'Fort William First Nation' and state = 'ON' and
zip_code = 'P7J 1G8';
delete from zip_codes where city = 'Fort William First Nation' and state = 'ON' and
zip_code = 'P7J 1J1';
delete from zip_codes where city = 'Fort William First Nation' and state = 'ON' and
zip_code = 'P7J 1J3';
delete from zip_codes where city = 'Fort William First Nation' and state = 'ON' and
zip_code = 'P7J 1J7';
delete from zip_codes where city = 'Fort William First Nation' and state = 'ON' and
zip_code = 'P7J 1J8';
delete from zip_codes where city = 'Fort William First Nation' and state = 'ON' and
zip_code = 'P7J 1K2';
delete from zip_codes where city = 'Fort William First Nation' and state = 'ON' and
zip_code = 'P7J 1K4';
delete from zip_codes where city = 'Fort William First Nation' and state = 'ON' and
zip_code = 'P7J 1K5';
delete from zip_codes where city = 'French Village Kings Co' and state = 'NB' and
zip_code = 'E5N 8B8';
delete from zip_codes where city = 'Gorham' and state = 'ON' and zip_code = 'P7G
2J4';
delete from zip_codes where city = 'Haddon Township' and state = 'NJ' and zip_code
= '08104';
delete from zip_codes where city = 'Haddon Township' and state = 'NJ' and zip_code
= '08107';
delete from zip_codes where city = 'Haddon Township' and state = 'NJ' and zip_code
= '08108';
delete from zip_codes where city = 'Hillview' and state = 'NS' and zip_code = 'B5A
5M7';
delete from zip_codes where city = 'Hillview' and state = 'NS' and zip_code = 'B5A
5M8';
delete from zip_codes where city = 'Hillview' and state = 'NS' and zip_code = 'B5A
5L8';
delete from zip_codes where city = 'Horton' and state = 'ON' and zip_code = 'K7V
3Z6';
delete from zip_codes where city = 'Horton' and state = 'ON' and zip_code = 'K7V
3Z9';
delete from zip_codes where city = 'Hot Springs National Park' and state = 'AR' and
zip_code = '71909';
delete from zip_codes where city = 'Kiersteadville' and state = 'NB' and zip_code =
'E5T 3K8';
delete from zip_codes where city = 'Lake Loon' and state = 'NS' and zip_code = 'B2W
3R8';
delete from zip_codes where city = 'Lake Loon' and state = 'NS' and zip_code = 'B2Z
1A6';
delete from zip_codes where city = 'McChord AFB' and state = 'WA' and zip_code =
'98499';
delete from zip_codes where city = 'McChord AFB' and state = 'WA' and zip_code =
'98439';
delete from zip_codes where city = 'Otonabee' and state = 'ON' and zip_code = 'K9J
0G6';
delete from zip_codes where city = 'Otonabee' and state = 'ON' and zip_code = 'K9J
6X8';
delete from zip_codes where city = 'Otonabee' and state = 'ON' and zip_code = 'K9J
6X7';
delete from zip_codes where city = 'Rocky View County' and state = 'AB' and
zip_code = 'T1X 0H7';
delete from zip_codes where city = 'Rocky View County' and state = 'AB' and
zip_code = 'T1X 0K5';
delete from zip_codes where city = 'Rocky View County' and state = 'AB' and
zip_code = 'T1X 0M8';
delete from zip_codes where city = 'Rocky View County' and state = 'AB' and
zip_code = 'T3P 1A7';
delete from zip_codes where city = 'Rocky View County' and state = 'AB' and
zip_code = 'T4A 0E2';
delete from zip_codes where city = 'Rocky View County' and state = 'AB' and
zip_code = 'T4A 0M9';
delete from zip_codes where city = 'Rocky View County' and state = 'AB' and
zip_code = 'T4A 0P7';
delete from zip_codes where city = 'Rocky View County' and state = 'AB' and
zip_code = 'T4B 2T4';
delete from zip_codes where city = 'Rocky View County' and state = 'AB' and
zip_code = 'T4B 2T3';
delete from zip_codes where city = 'Saint-alexis-de-matapedia' and state = 'QC' and
zip_code = 'G0J 1V0';
delete from zip_codes where city = 'Saint-alphonse-rodriguez' and state = 'QC' and
zip_code = 'J0K 1Y0';
delete from zip_codes where city = 'Saint-georges-de-champlain' and state = 'QC';
delete from zip_codes where city = 'Shuniah' and state = 'ON' and zip_code = 'P0T
2M0';

delete from zip_codes where id = (select max(id) from zip_codes where city =
'Salmon Cove Bdv' and state = 'NL' and zip_code = 'A0A 3S0');
delete from zip_codes where id = (select max(id) from zip_codes where city = 'Les
Bergeronnes' and state = 'QC' and zip_code = 'G0T 1G0');

delete from zip_codes where zip_code = '00601' and city = 'Adjuntas' and state =
'PR';
delete from zip_codes where zip_code = '00602' and city = 'Aguada' and state =
'PR';
delete from zip_codes where zip_code = '00603' and city = 'Aguadilla' and state =
'PR';
delete from zip_codes where zip_code = '00604' and city = 'Aguadilla' and state =
'PR';
delete from zip_codes where zip_code = '00605' and city = 'Aguadilla' and state =
'PR';
delete from zip_codes where zip_code = '00606' and city = 'Maricao' and state =
'PR';
delete from zip_codes where zip_code = '00610' and city = 'Anasco' and state =
'PR';
delete from zip_codes where zip_code = '00611' and city = 'Angeles' and state =
'PR';
delete from zip_codes where zip_code = '00612' and city = 'Arecibo' and state =
'PR';
delete from zip_codes where zip_code = '00613' and city = 'Arecibo' and state =
'PR';
delete from zip_codes where zip_code = '00614' and city = 'Arecibo' and state =
'PR';
delete from zip_codes where zip_code = '00616' and city = 'Bajadero' and state =
'PR';
delete from zip_codes where zip_code = '00617' and city = 'Barceloneta' and state =
'PR';
delete from zip_codes where zip_code = '00622' and city = 'Boqueron' and state =
'PR';
delete from zip_codes where zip_code = '00623' and city = 'Cabo Rojo' and state =
'PR';
delete from zip_codes where zip_code = '00624' and city = 'Penuelas' and state =
'PR';
delete from zip_codes where zip_code = '00627' and city = 'Camuy' and state = 'PR';
delete from zip_codes where zip_code = '00631' and city = 'Castaner' and state =
'PR';
delete from zip_codes where zip_code = '00636' and city = 'Rosario' and state =
'PR';
delete from zip_codes where zip_code = '00637' and city = 'Sabana Grande' and state
= 'PR';
delete from zip_codes where zip_code = '00638' and city = 'Ciales' and state =
'PR';
delete from zip_codes where zip_code = '00641' and city = 'Utuado' and state =
'PR';
delete from zip_codes where zip_code = '00646' and city = 'Dorado' and state =
'PR';
delete from zip_codes where zip_code = '00647' and city = 'Ensenada' and state =
'PR';
delete from zip_codes where zip_code = '00650' and city = 'Florida' and state =
'PR';
delete from zip_codes where zip_code = '00652' and city = 'Garrochales' and state =
'PR';
delete from zip_codes where zip_code = '00653' and city = 'Guanica' and state =
'PR';
delete from zip_codes where zip_code = '00656' and city = 'Guayanilla' and state =
'PR';
delete from zip_codes where zip_code = '00659' and city = 'Hatillo' and state =
'PR';
delete from zip_codes where zip_code = '00660' and city = 'Hormigueros' and state =
'PR';
delete from zip_codes where zip_code = '00662' and city = 'Isabela' and state =
'PR';
delete from zip_codes where zip_code = '00664' and city = 'Jayuya' and state =
'PR';
delete from zip_codes where zip_code = '00667' and city = 'Lajas' and state = 'PR';
delete from zip_codes where zip_code = '00669' and city = 'Lares' and state = 'PR';
delete from zip_codes where zip_code = '00670' and city = 'Las Marias' and state =
'PR';
delete from zip_codes where zip_code = '00674' and city = 'Manati' and state =
'PR';
delete from zip_codes where zip_code = '00676' and city = 'Moca' and state = 'PR';
delete from zip_codes where zip_code = '00677' and city = 'Rincon' and state =
'PR';
delete from zip_codes where zip_code = '00678' and city = 'Quebradillas' and state
= 'PR';
delete from zip_codes where zip_code = '00680' and city = 'Mayaguez' and state =
'PR';
delete from zip_codes where zip_code = '00681' and city = 'Mayaguez' and state =
'PR';
delete from zip_codes where zip_code = '00682' and city = 'Mayaguez' and state =
'PR';
delete from zip_codes where zip_code = '00683' and city = 'San German' and state =
'PR';
delete from zip_codes where zip_code = '00685' and city = 'San Sebastian' and state
= 'PR';
delete from zip_codes where zip_code = '00687' and city = 'Morovis' and state =
'PR';
delete from zip_codes where zip_code = '00688' and city = 'Sabana Hoyos' and state
= 'PR';
delete from zip_codes where zip_code = '00690' and city = 'San Antonio' and state =
'PR';
delete from zip_codes where zip_code = '00692' and city = 'Vega Alta' and state =
'PR';
delete from zip_codes where zip_code = '00693' and city = 'Vega Baja' and state =
'PR';
delete from zip_codes where zip_code = '00694' and city = 'Vega Baja' and state =
'PR';
delete from zip_codes where zip_code = '00698' and city = 'Yauco' and state = 'PR';
delete from zip_codes where zip_code = '00703' and city = 'Aguas Buenas' and state
= 'PR';
delete from zip_codes where zip_code = '00704' and city = 'Aguirre' and state =
'PR';
delete from zip_codes where zip_code = '00705' and city = 'Aibonito' and state =
'PR';
delete from zip_codes where zip_code = '00707' and city = 'Maunabo' and state =
'PR';
delete from zip_codes where zip_code = '00714' and city = 'Arroyo' and state =
'PR';
delete from zip_codes where zip_code = '00715' and city = 'Mercedita' and state =
'PR';
delete from zip_codes where zip_code = '00716' and city = 'Ponce' and state = 'PR';
delete from zip_codes where zip_code = '00717' and city = 'Ponce' and state = 'PR';
delete from zip_codes where zip_code = '00718' and city = 'Naguabo' and state =
'PR';
delete from zip_codes where zip_code = '00719' and city = 'Naranjito' and state =
'PR';
delete from zip_codes where zip_code = '00720' and city = 'Orocovis' and state =
'PR';
delete from zip_codes where zip_code = '00721' and city = 'Palmer' and state =
'PR';
delete from zip_codes where zip_code = '00723' and city = 'Patillas' and state =
'PR';
delete from zip_codes where zip_code = '00725' and city = 'Caguas' and state =
'PR';
delete from zip_codes where zip_code = '00726' and city = 'Caguas' and state =
'PR';
delete from zip_codes where zip_code = '00727' and city = 'Caguas' and state =
'PR';
delete from zip_codes where zip_code = '00728' and city = 'Ponce' and state = 'PR';
delete from zip_codes where zip_code = '00729' and city = 'Canovanas' and state =
'PR';
delete from zip_codes where zip_code = '00730' and city = 'Ponce' and state = 'PR';
delete from zip_codes where zip_code = '00731' and city = 'Ponce' and state = 'PR';
delete from zip_codes where zip_code = '00732' and city = 'Ponce' and state = 'PR';
delete from zip_codes where zip_code = '00733' and city = 'Ponce' and state = 'PR';
delete from zip_codes where zip_code = '00734' and city = 'Ponce' and state = 'PR';
delete from zip_codes where zip_code = '00735' and city = 'Ceiba' and state = 'PR';
delete from zip_codes where zip_code = '00736' and city = 'Cayey' and state = 'PR';
delete from zip_codes where zip_code = '00737' and city = 'Cayey' and state = 'PR';
delete from zip_codes where zip_code = '00738' and city = 'Fajardo' and state =
'PR';
delete from zip_codes where zip_code = '00739' and city = 'Cidra' and state = 'PR';
delete from zip_codes where zip_code = '00740' and city = 'Puerto Real' and state =
'PR';
delete from zip_codes where zip_code = '00741' and city = 'Punta Santiago' and
state = 'PR';
delete from zip_codes where zip_code = '00742' and city = 'Roosevelt Roads' and
state = 'PR';
delete from zip_codes where zip_code = '00744' and city = 'Rio Blanco' and state =
'PR';
delete from zip_codes where zip_code = '00745' and city = 'Rio Grande' and state =
'PR';
delete from zip_codes where zip_code = '00751' and city = 'Salinas' and state =
'PR';
delete from zip_codes where zip_code = '00754' and city = 'San Lorenzo' and state =
'PR';
delete from zip_codes where zip_code = '00757' and city = 'Santa Isabel' and state
= 'PR';
delete from zip_codes where zip_code = '00765' and city = 'Vieques' and state =
'PR';
delete from zip_codes where zip_code = '00766' and city = 'Villalba' and state =
'PR';
delete from zip_codes where zip_code = '00767' and city = 'Yabucoa' and state =
'PR';
delete from zip_codes where zip_code = '00769' and city = 'Coamo' and state = 'PR';
delete from zip_codes where zip_code = '00771' and city = 'Las Piedras' and state =
'PR';
delete from zip_codes where zip_code = '00772' and city = 'Loiza' and state = 'PR';
delete from zip_codes where zip_code = '00773' and city = 'Luquillo' and state =
'PR';
delete from zip_codes where zip_code = '00775' and city = 'Culebra' and state =
'PR';
delete from zip_codes where zip_code = '00777' and city = 'Juncos' and state =
'PR';
delete from zip_codes where zip_code = '00778' and city = 'Gurabo' and state =
'PR';
delete from zip_codes where zip_code = '00780' and city = 'Coto Laurel' and state =
'PR';
delete from zip_codes where zip_code = '00782' and city = 'Comerio' and state =
'PR';
delete from zip_codes where zip_code = '00783' and city = 'Corozal' and state =
'PR';
delete from zip_codes where zip_code = '00784' and city = 'Guayama' and state =
'PR';
delete from zip_codes where zip_code = '00785' and city = 'Guayama' and state =
'PR';
delete from zip_codes where zip_code = '00786' and city = 'La Plata' and state =
'PR';
delete from zip_codes where zip_code = '00791' and city = 'Humacao' and state =
'PR';
delete from zip_codes where zip_code = '00792' and city = 'Humacao' and state =
'PR';
delete from zip_codes where zip_code = '00794' and city = 'Barranquitas' and state
= 'PR';
delete from zip_codes where zip_code = '00795' and city = 'Juana Diaz' and state =
'PR';
delete from zip_codes where zip_code = '00801' and city = 'St Thomas' and state =
'VI';
delete from zip_codes where zip_code = '00802' and city = 'St Thomas' and state =
'VI';
delete from zip_codes where zip_code = '00803' and city = 'St Thomas' and state =
'VI';
delete from zip_codes where zip_code = '00804' and city = 'St Thomas' and state =
'VI';
delete from zip_codes where zip_code = '00805' and city = 'St Thomas' and state =
'VI';
delete from zip_codes where zip_code = '00820' and city = 'Christiansted' and state
= 'VI';
delete from zip_codes where zip_code = '00821' and city = 'Christiansted' and state
= 'VI';
delete from zip_codes where zip_code = '00822' and city = 'Christiansted' and state
= 'VI';
delete from zip_codes where zip_code = '00823' and city = 'Christiansted' and state
= 'VI';
delete from zip_codes where zip_code = '00824' and city = 'Christiansted' and state
= 'VI';
delete from zip_codes where zip_code = '00830' and city = 'St John' and state =
'VI';
delete from zip_codes where zip_code = '00831' and city = 'St John' and state =
'VI';
delete from zip_codes where zip_code = '00840' and city = 'Frederiksted' and state
= 'VI';
delete from zip_codes where zip_code = '00841' and city = 'Frederiksted' and state
= 'VI';
delete from zip_codes where zip_code = '00850' and city = 'Kingshill' and state =
'VI';
delete from zip_codes where zip_code = '00851' and city = 'Kingshill' and state =
'VI';
delete from zip_codes where zip_code = '00901' and city = 'San Juan' and state =
'PR';
delete from zip_codes where zip_code = '00902' and city = 'San Juan' and state =
'PR';
delete from zip_codes where zip_code = '00906' and city = 'San Juan' and state =
'PR';
delete from zip_codes where zip_code = '00907' and city = 'San Juan' and state =
'PR';
delete from zip_codes where zip_code = '00908' and city = 'San Juan' and state =
'PR';
delete from zip_codes where zip_code = '00909' and city = 'San Juan' and state =
'PR';
delete from zip_codes where zip_code = '00910' and city = 'San Juan' and state =
'PR';
delete from zip_codes where zip_code = '00911' and city = 'San Juan' and state =
'PR';
delete from zip_codes where zip_code = '00912' and city = 'San Juan' and state =
'PR';
delete from zip_codes where zip_code = '00913' and city = 'San Juan' and state =
'PR';
delete from zip_codes where zip_code = '00914' and city = 'San Juan' and state =
'PR';
delete from zip_codes where zip_code = '00915' and city = 'San Juan' and state =
'PR';
delete from zip_codes where zip_code = '00916' and city = 'San Juan' and state =
'PR';
delete from zip_codes where zip_code = '00917' and city = 'San Juan' and state =
'PR';
delete from zip_codes where zip_code = '00918' and city = 'San Juan' and state =
'PR';
delete from zip_codes where zip_code = '00919' and city = 'San Juan' and state =
'PR';
delete from zip_codes where zip_code = '00920' and city = 'San Juan' and state =
'PR';
delete from zip_codes where zip_code = '00921' and city = 'San Juan' and state =
'PR';
delete from zip_codes where zip_code = '00922' and city = 'San Juan' and state =
'PR';
delete from zip_codes where zip_code = '00923' and city = 'San Juan' and state =
'PR';
delete from zip_codes where zip_code = '00924' and city = 'San Juan' and state =
'PR';
delete from zip_codes where zip_code = '00925' and city = 'San Juan' and state =
'PR';
delete from zip_codes where zip_code = '00926' and city = 'San Juan' and state =
'PR';
delete from zip_codes where zip_code = '00927' and city = 'San Juan' and state =
'PR';
delete from zip_codes where zip_code = '00928' and city = 'San Juan' and state =
'PR';
delete from zip_codes where zip_code = '00929' and city = 'San Juan' and state =
'PR';
delete from zip_codes where zip_code = '00930' and city = 'San Juan' and state =
'PR';
delete from zip_codes where zip_code = '00931' and city = 'San Juan' and state =
'PR';
delete from zip_codes where zip_code = '00933' and city = 'San Juan' and state =
'PR';
delete from zip_codes where zip_code = '00934' and city = 'Fort Buchanan' and state
= 'PR';
delete from zip_codes where zip_code = '00935' and city = 'San Juan' and state =
'PR';
delete from zip_codes where zip_code = '00936' and city = 'San Juan' and state =
'PR';
delete from zip_codes where zip_code = '00937' and city = 'San Juan' and state =
'PR';
delete from zip_codes where zip_code = '00939' and city = 'San Juan' and state =
'PR';
delete from zip_codes where zip_code = '00940' and city = 'San Juan' and state =
'PR';
delete from zip_codes where zip_code = '00949' and city = 'Toa Baja' and state =
'PR';
delete from zip_codes where zip_code = '00950' and city = 'Toa Baja' and state =
'PR';
delete from zip_codes where zip_code = '00951' and city = 'Toa Baja' and state =
'PR';
delete from zip_codes where zip_code = '00952' and city = 'Sabana Seca' and state =
'PR';
delete from zip_codes where zip_code = '00953' and city = 'Toa Alta' and state =
'PR';
delete from zip_codes where zip_code = '00954' and city = 'Toa Alta' and state =
'PR';
delete from zip_codes where zip_code = '00955' and city = 'San Juan' and state =
'PR';
delete from zip_codes where zip_code = '00956' and city = 'Bayamon' and state =
'PR';
delete from zip_codes where zip_code = '00957' and city = 'Bayamon' and state =
'PR';
delete from zip_codes where zip_code = '00958' and city = 'Bayamon' and state =
'PR';
delete from zip_codes where zip_code = '00959' and city = 'Bayamon' and state =
'PR';
delete from zip_codes where zip_code = '00960' and city = 'Bayamon' and state =
'PR';
delete from zip_codes where zip_code = '00961' and city = 'Bayamon' and state =
'PR';
delete from zip_codes where zip_code = '00962' and city = 'Catano' and state =
'PR';
delete from zip_codes where zip_code = '00963' and city = 'Catano' and state =
'PR';
delete from zip_codes where zip_code = '00965' and city = 'Guaynabo' and state =
'PR';
delete from zip_codes where zip_code = '00966' and city = 'Guaynabo' and state =
'PR';
delete from zip_codes where zip_code = '00968' and city = 'Guaynabo' and state =
'PR';
delete from zip_codes where zip_code = '00969' and city = 'Guaynabo' and state =
'PR';
delete from zip_codes where zip_code = '00970' and city = 'Guaynabo' and state =
'PR';
delete from zip_codes where zip_code = '00971' and city = 'Guaynabo' and state =
'PR';
delete from zip_codes where zip_code = '00975' and city = 'San Juan' and state =
'PR';
delete from zip_codes where zip_code = '00976' and city = 'Trujillo Alto' and state
= 'PR';
delete from zip_codes where zip_code = '00977' and city = 'Trujillo Alto' and state
= 'PR';
delete from zip_codes where zip_code = '00978' and city = 'Saint Just' and state =
'PR';
delete from zip_codes where zip_code = '00979' and city = 'Carolina' and state =
'PR';
delete from zip_codes where zip_code = '00981' and city = 'Carolina' and state =
'PR';
delete from zip_codes where zip_code = '00982' and city = 'Carolina' and state =
'PR';
delete from zip_codes where zip_code = '00983' and city = 'Carolina' and state =
'PR';
delete from zip_codes where zip_code = '00984' and city = 'Carolina' and state =
'PR';
delete from zip_codes where zip_code = '00985' and city = 'Carolina' and state =
'PR';
delete from zip_codes where zip_code = '00986' and city = 'Carolina' and state =
'PR';
delete from zip_codes where zip_code = '00987' and city = 'Carolina' and state =
'PR';
delete from zip_codes where zip_code = '00988' and city = 'Carolina' and state =
'PR';
delete from zip_codes where zip_code = '02807' and city = 'Block Island' and state
= 'RI';
delete from zip_codes where zip_code = '04851' and city = 'Matinicus' and state =
'ME';
delete from zip_codes where zip_code = '04852' and city = 'Monhegan' and state =
'ME';
delete from zip_codes where zip_code = '04863' and city = 'Vinalhaven' and state =
'ME';
delete from zip_codes where zip_code = '09002' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09003' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09004' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09005' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09006' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09009' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09010' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09011' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09012' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09013' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09014' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09020' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09021' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09028' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09033' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09034' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09038' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09046' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09049' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09053' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09054' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09055' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09059' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09060' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09067' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09068' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09069' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09075' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09079' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09090' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09094' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09095' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09096' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09099' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09103' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09104' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09107' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09112' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09114' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09123' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09126' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09128' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09131' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09136' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09138' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09139' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09140' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09142' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09143' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09154' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09172' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09173' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09177' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09180' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09186' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09211' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09213' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09214' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09226' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09227' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09245' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09250' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09261' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09263' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09264' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09265' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09301' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09302' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09304' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09306' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09307' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09309' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09310' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09311' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09314' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09315' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09320' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09321' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09328' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09330' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09337' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09340' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09343' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09347' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09348' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09352' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09353' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09354' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09355' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09356' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09357' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09360' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09363' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09364' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09365' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09366' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09367' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09368' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09369' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09370' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09372' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09373' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09382' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09383' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09394' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09397' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09403' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09421' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09447' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09454' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09459' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09461' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09463' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09464' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09468' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09469' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09470' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09494' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09496' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09498' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09501' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09502' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09504' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09505' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09506' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09507' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09510' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09513' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09517' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09520' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09522' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09524' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09532' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09534' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09543' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09554' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09556' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09564' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09565' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09566' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09567' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09568' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09569' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09570' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09573' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09574' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09575' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09576' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09577' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09578' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09579' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09581' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09582' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09586' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09587' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09588' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09589' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09590' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09591' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09593' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09594' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09595' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09599' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09602' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09603' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09604' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09605' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09606' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09607' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09608' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09609' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09610' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09613' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09617' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09618' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09620' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09621' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09622' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09623' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09624' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09625' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09626' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09627' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09630' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09631' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09633' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09636' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09642' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09643' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09645' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09647' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09648' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09649' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09701' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09702' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09703' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09704' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09705' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09706' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09707' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09708' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09710' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09711' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09712' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09713' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09714' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09715' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09716' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09717' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09718' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09719' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09720' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09722' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09723' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09724' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09725' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09726' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09727' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09728' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09729' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09730' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09731' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09732' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09733' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09734' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09735' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09736' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09737' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09738' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09739' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09741' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09742' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09743' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09744' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09745' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09747' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09748' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09749' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09750' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09751' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09752' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09759' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09762' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09769' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09777' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09780' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09798' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09801' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09802' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09803' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09804' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09805' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09806' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09807' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09809' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09810' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09811' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09812' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09813' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09814' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09816' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09817' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09818' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09820' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09821' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09822' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09823' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09824' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09825' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09826' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09827' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09828' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09829' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09830' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09831' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09832' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09833' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09834' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09835' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09836' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09837' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09838' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09839' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09840' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09841' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09842' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09845' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09846' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09848' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09852' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09853' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09855' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09858' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09859' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09861' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09865' and city = 'FPO' and state = 'AE';
delete from zip_codes where zip_code = '09868' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09870' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09873' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09874' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09875' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09880' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09890' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '09890' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09892' and city = 'DPO' and state = 'AE';
delete from zip_codes where zip_code = '09898' and city = 'Apo' and state = 'AE';
delete from zip_codes where zip_code = '19060' and city = 'Garnet Valley' and state
= 'PA';
delete from zip_codes where zip_code = '20588' and city = 'DHS' and state = 'MD';
delete from zip_codes where zip_code = '20598' and city = 'DHS' and state = 'VA';
delete from zip_codes where zip_code = '23440' and city = 'Tangier' and state =
'VA';
delete from zip_codes where zip_code = '34002' and city = 'DPO' and state = 'AA';
delete from zip_codes where zip_code = '34004' and city = 'DPO' and state = 'AA';
delete from zip_codes where zip_code = '34007' and city = 'FPO' and state = 'AA';
delete from zip_codes where zip_code = '34008' and city = 'DPO' and state = 'AA';
delete from zip_codes where zip_code = '34011' and city = 'DPO' and state = 'AA';
delete from zip_codes where zip_code = '34020' and city = 'DPO' and state = 'AA';
delete from zip_codes where zip_code = '34021' and city = 'DPO' and state = 'AA';
delete from zip_codes where zip_code = '34022' and city = 'DPO' and state = 'AA';
delete from zip_codes where zip_code = '34023' and city = 'DPO' and state = 'AA';
delete from zip_codes where zip_code = '34024' and city = 'DPO' and state = 'AA';
delete from zip_codes where zip_code = '34025' and city = 'DPO' and state = 'AA';
delete from zip_codes where zip_code = '34030' and city = 'DPO' and state = 'AA';
delete from zip_codes where zip_code = '34031' and city = 'DPO' and state = 'AA';
delete from zip_codes where zip_code = '34032' and city = 'DPO' and state = 'AA';
delete from zip_codes where zip_code = '34033' and city = 'DPO' and state = 'AA';
delete from zip_codes where zip_code = '34034' and city = 'DPO' and state = 'AA';
delete from zip_codes where zip_code = '34035' and city = 'DPO' and state = 'AA';
delete from zip_codes where zip_code = '34036' and city = 'DPO' and state = 'AA';
delete from zip_codes where zip_code = '34037' and city = 'DPO' and state = 'AA';
delete from zip_codes where zip_code = '34038' and city = 'Apo' and state = 'AA';
delete from zip_codes where zip_code = '34039' and city = 'DPO' and state = 'AA';
delete from zip_codes where zip_code = '34041' and city = 'DPO' and state = 'AA';
delete from zip_codes where zip_code = '34042' and city = 'Apo' and state = 'AA';
delete from zip_codes where zip_code = '34044' and city = 'Apo' and state = 'AA';
delete from zip_codes where zip_code = '34055' and city = 'DPO' and state = 'AA';
delete from zip_codes where zip_code = '34058' and city = 'FPO' and state = 'AA';
delete from zip_codes where zip_code = '34060' and city = 'DPO' and state = 'AA';
delete from zip_codes where zip_code = '34078' and city = 'Apo' and state = 'AA';
delete from zip_codes where zip_code = '34090' and city = 'FPO' and state = 'AA';
delete from zip_codes where zip_code = '34091' and city = 'FPO' and state = 'AA';
delete from zip_codes where zip_code = '34092' and city = 'FPO' and state = 'AA';
delete from zip_codes where zip_code = '34093' and city = 'FPO' and state = 'AA';
delete from zip_codes where zip_code = '34094' and city = 'FPO' and state = 'AA';
delete from zip_codes where zip_code = '34098' and city = 'FPO' and state = 'AA';
delete from zip_codes where zip_code = '34099' and city = 'FPO' and state = 'AA';
delete from zip_codes where zip_code = '49782' and city = 'Beaver Island' and state
= 'MI';
delete from zip_codes where zip_code = '56666' and city = 'Ponemah' and state =
'MN';
delete from zip_codes where zip_code = '56741' and city = 'Oak Island' and state =
'MN';
delete from zip_codes where zip_code = '56901' and city = 'Parcel Return Service'
and state = 'DC';
delete from zip_codes where zip_code = '56902' and city = 'Parcel Return Service'
and state = 'DC';
delete from zip_codes where zip_code = '56904' and city = 'Parcel Return Service'
and state = 'DC';
delete from zip_codes where zip_code = '56915' and city = 'Parcel Return Service'
and state = 'DC';
delete from zip_codes where zip_code = '56920' and city = 'Parcel Return Service'
and state = 'DC';
delete from zip_codes where zip_code = '56933' and city = 'Parcel Return Service'
and state = 'DC';
delete from zip_codes where zip_code = '56935' and city = 'Parcel Return Service'
and state = 'DC';
delete from zip_codes where zip_code = '56944' and city = 'Parcel Return Service'
and state = 'DC';
delete from zip_codes where zip_code = '56945' and city = 'Parcel Return Service'
and state = 'DC';
delete from zip_codes where zip_code = '56950' and city = 'Parcel Return Service'
and state = 'DC';
delete from zip_codes where zip_code = '56965' and city = 'Parcel Return Service'
and state = 'DC';
delete from zip_codes where zip_code = '56967' and city = 'Parcel Return Service'
and state = 'DC';
delete from zip_codes where zip_code = '56972' and city = 'Parcel Return Service'
and state = 'DC';
delete from zip_codes where zip_code = '56999' and city = 'Parcel Return Service'
and state = 'DC';
delete from zip_codes where zip_code = '57433' and city = 'Columbia' and state =
'SD';
delete from zip_codes where zip_code = '57572' and city = 'Saint Francis' and state
= 'SD';
delete from zip_codes where zip_code = '57622' and city = 'Cherry Creek' and state
= 'SD';
delete from zip_codes where zip_code = '58641' and city = 'Lefor' and state = 'ND';
delete from zip_codes where zip_code = '58645' and city = 'Medora' and state =
'ND';
delete from zip_codes where zip_code = '58731' and city = 'Deering' and state =
'ND';
delete from zip_codes where zip_code = '59012' and city = 'Birney' and state =
'MT';
delete from zip_codes where zip_code = '59035' and city = 'Fort Smith' and state =
'MT';
delete from zip_codes where zip_code = '59058' and city = 'Mosby' and state = 'MT';
delete from zip_codes where zip_code = '59062' and city = 'Otter' and state = 'MT';
delete from zip_codes where zip_code = '59244' and city = 'Larslan' and state =
'MT';
delete from zip_codes where zip_code = '59315' and city = 'Bloomfield' and state =
'MT';
delete from zip_codes where zip_code = '59341' and city = 'Mildred' and state =
'MT';
delete from zip_codes where zip_code = '59345' and city = 'Powderville' and state =
'MT';
delete from zip_codes where zip_code = '59448' and city = 'Heart Butte' and state =
'MT';
delete from zip_codes where zip_code = '59535' and city = 'Lloyd' and state = 'MT';
delete from zip_codes where zip_code = '59928' and city = 'Polebridge' and state =
'MT';
delete from zip_codes where zip_code = '60958' and city = 'Pembroke Township' and
state = 'IL';
delete from zip_codes where zip_code = '82058' and city = 'Garrett' and state =
'WY';
delete from zip_codes where zip_code = '83229' and city = 'Cobalt' and state =
'ID';
delete from zip_codes where zip_code = '83322' and city = 'Corral' and state =
'ID';
delete from zip_codes where zip_code = '83469' and city = 'Shoup' and state = 'ID';
delete from zip_codes where zip_code = '83601' and city = 'Atlanta' and state =
'ID';
delete from zip_codes where zip_code = '83677' and city = 'Yellow Pine' and state =
'ID';
delete from zip_codes where zip_code = '83802' and city = 'Avery' and state = 'ID';
delete from zip_codes where zip_code = '83808' and city = 'Calder' and state =
'ID';
delete from zip_codes where zip_code = '83874' and city = 'Murray' and state =
'ID';
delete from zip_codes where zip_code = '84536' and city = 'Monument Valley' and
state = 'UT';
delete from zip_codes where zip_code = '85140' and city = 'San Tan Valley' and
state = 'AZ';
delete from zip_codes where zip_code = '85143' and city = 'San Tan Valley' and
state = 'AZ';
delete from zip_codes where zip_code = '86343' and city = 'Crown King' and state =
'AZ';
delete from zip_codes where zip_code = '87654' and city = 'Spaceport City' and
state = 'NM';
delete from zip_codes where zip_code = '90090' and city = 'Dodgertown' and state =
'CA';
delete from zip_codes where zip_code = '95428' and city = 'Covelo' and state =
'CA';
delete from zip_codes where zip_code = '95545' and city = 'Honeydew' and state =
'CA';
delete from zip_codes where zip_code = '95558' and city = 'Petrolia' and state =
'CA';
delete from zip_codes where zip_code = '95595' and city = 'Zenia' and state = 'CA';
delete from zip_codes where zip_code = '95914' and city = 'Bangor' and state =
'CA';
delete from zip_codes where zip_code = '95919' and city = 'Brownsville' and state =
'CA';
delete from zip_codes where zip_code = '95939' and city = 'Elk Creek' and state =
'CA';
delete from zip_codes where zip_code = '95941' and city = 'Forbestown' and state =
'CA';
delete from zip_codes where zip_code = '95972' and city = 'Rackerby' and state =
'CA';
delete from zip_codes where zip_code = '96029' and city = 'Flournoy' and state =
'CA';
delete from zip_codes where zip_code = '96046' and city = 'Hyampom' and state =
'CA';
delete from zip_codes where zip_code = '96074' and city = 'Paskenta' and state =
'CA';
delete from zip_codes where zip_code = '96091' and city = 'Trinity Center' and
state = 'CA';
delete from zip_codes where zip_code = '96201' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96202' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96203' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96204' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96205' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96206' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96207' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96209' and city = 'DPO' and state = 'AP';
delete from zip_codes where zip_code = '96213' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96214' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96218' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96224' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96257' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96258' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96260' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96264' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96266' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96267' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96269' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96271' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96275' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96276' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96278' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96283' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96284' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96303' and city = 'DPO' and state = 'AP';
delete from zip_codes where zip_code = '96306' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96309' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96310' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96319' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96321' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96322' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96323' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96326' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96328' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96330' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96336' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96337' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96338' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96339' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96343' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96346' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96347' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96348' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96349' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96350' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96351' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96362' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96365' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96367' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96368' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96370' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96372' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96373' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96374' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96375' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96376' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96377' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96378' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96379' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96380' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96382' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96384' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96385' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96386' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96387' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96388' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96389' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96401' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96427' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96447' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96501' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96502' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96503' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96507' and city = 'DPO' and state = 'AP';
delete from zip_codes where zip_code = '96510' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96511' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96515' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96516' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96517' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96520' and city = 'DPO' and state = 'AP';
delete from zip_codes where zip_code = '96521' and city = 'DPO' and state = 'AP';
delete from zip_codes where zip_code = '96522' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96530' and city = 'DPO' and state = 'AP';
delete from zip_codes where zip_code = '96531' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96532' and city = 'DPO' and state = 'AP';
delete from zip_codes where zip_code = '96534' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96535' and city = 'DPO' and state = 'AP';
delete from zip_codes where zip_code = '96537' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96538' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96540' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96541' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96542' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96542' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96543' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96543' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96546' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96548' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96549' and city = 'DPO' and state = 'AP';
delete from zip_codes where zip_code = '96550' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96551' and city = 'DPO' and state = 'AP';
delete from zip_codes where zip_code = '96552' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96553' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96554' and city = 'DPO' and state = 'AP';
delete from zip_codes where zip_code = '96555' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96557' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96562' and city = 'DPO' and state = 'AP';
delete from zip_codes where zip_code = '96577' and city = 'Apo' and state = 'AP';
delete from zip_codes where zip_code = '96578' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96595' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96598' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96599' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96601' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96602' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96603' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96604' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96605' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96606' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96607' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96608' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96609' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96610' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96611' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96615' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96616' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96617' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96619' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96620' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96621' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96622' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96624' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96628' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96629' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96643' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96650' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96657' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96660' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96661' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96662' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96663' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96664' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96665' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96666' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96667' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96668' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96669' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96670' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96671' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96672' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96673' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96674' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96675' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96677' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96678' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96679' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96681' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96682' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96683' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96686' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96698' and city = 'FPO' and state = 'AP';
delete from zip_codes where zip_code = '96701' and city = 'Aiea' and state = 'HI';
delete from zip_codes where zip_code = '96703' and city = 'Anahola' and state =
'HI';
delete from zip_codes where zip_code = '96704' and city = 'Captain Cook' and state
= 'HI';
delete from zip_codes where zip_code = '96705' and city = 'Eleele' and state =
'HI';
delete from zip_codes where zip_code = '96706' and city = 'Ewa Beach' and state =
'HI';
delete from zip_codes where zip_code = '96707' and city = 'Kapolei' and state =
'HI';
delete from zip_codes where zip_code = '96708' and city = 'Haiku' and state = 'HI';
delete from zip_codes where zip_code = '96709' and city = 'Kapolei' and state =
'HI';
delete from zip_codes where zip_code = '96710' and city = 'Hakalau' and state =
'HI';
delete from zip_codes where zip_code = '96712' and city = 'Haleiwa' and state =
'HI';
delete from zip_codes where zip_code = '96713' and city = 'Hana' and state = 'HI';
delete from zip_codes where zip_code = '96714' and city = 'Hanalei' and state =
'HI';
delete from zip_codes where zip_code = '96715' and city = 'Hanamaulu' and state =
'HI';
delete from zip_codes where zip_code = '96716' and city = 'Hanapepe' and state =
'HI';
delete from zip_codes where zip_code = '96717' and city = 'Hauula' and state =
'HI';
delete from zip_codes where zip_code = '96718' and city = 'Hawaii National Park'
and state = 'HI';
delete from zip_codes where zip_code = '96719' and city = 'Hawi' and state = 'HI';
delete from zip_codes where zip_code = '96720' and city = 'Hilo' and state = 'HI';
delete from zip_codes where zip_code = '96721' and city = 'Hilo' and state = 'HI';
delete from zip_codes where zip_code = '96722' and city = 'Princeville' and state =
'HI';
delete from zip_codes where zip_code = '96725' and city = 'Holualoa' and state =
'HI';
delete from zip_codes where zip_code = '96726' and city = 'Honaunau' and state =
'HI';
delete from zip_codes where zip_code = '96727' and city = 'Honokaa' and state =
'HI';
delete from zip_codes where zip_code = '96728' and city = 'Honomu' and state =
'HI';
delete from zip_codes where zip_code = '96729' and city = 'Hoolehua' and state =
'HI';
delete from zip_codes where zip_code = '96730' and city = 'Kaaawa' and state =
'HI';
delete from zip_codes where zip_code = '96731' and city = 'Kahuku' and state =
'HI';
delete from zip_codes where zip_code = '96732' and city = 'Kahului' and state =
'HI';
delete from zip_codes where zip_code = '96733' and city = 'Kahului' and state =
'HI';
delete from zip_codes where zip_code = '96734' and city = 'Kailua' and state =
'HI';
delete from zip_codes where zip_code = '96737' and city = 'Ocean View' and state =
'HI';
delete from zip_codes where zip_code = '96738' and city = 'Waikoloa' and state =
'HI';
delete from zip_codes where zip_code = '96739' and city = 'Keauhou' and state =
'HI';
delete from zip_codes where zip_code = '96740' and city = 'Kailua Kona' and state =
'HI';
delete from zip_codes where zip_code = '96741' and city = 'Kalaheo' and state =
'HI';
delete from zip_codes where zip_code = '96742' and city = 'Kalaupapa' and state =
'HI';
delete from zip_codes where zip_code = '96743' and city = 'Kamuela' and state =
'HI';
delete from zip_codes where zip_code = '96744' and city = 'Kaneohe' and state =
'HI';
delete from zip_codes where zip_code = '96745' and city = 'Kailua Kona' and state =
'HI';
delete from zip_codes where zip_code = '96746' and city = 'Kapaa' and state = 'HI';
delete from zip_codes where zip_code = '96747' and city = 'Kaumakani' and state =
'HI';
delete from zip_codes where zip_code = '96748' and city = 'Kaunakakai' and state =
'HI';
delete from zip_codes where zip_code = '96749' and city = 'Keaau' and state = 'HI';
delete from zip_codes where zip_code = '96750' and city = 'Kealakekua' and state =
'HI';
delete from zip_codes where zip_code = '96751' and city = 'Kealia' and state =
'HI';
delete from zip_codes where zip_code = '96752' and city = 'Kekaha' and state =
'HI';
delete from zip_codes where zip_code = '96753' and city = 'Kihei' and state = 'HI';
delete from zip_codes where zip_code = '96754' and city = 'Kilauea' and state =
'HI';
delete from zip_codes where zip_code = '96755' and city = 'Kapaau' and state =
'HI';
delete from zip_codes where zip_code = '96756' and city = 'Koloa' and state = 'HI';
delete from zip_codes where zip_code = '96757' and city = 'Kualapuu' and state =
'HI';
delete from zip_codes where zip_code = '96759' and city = 'Kunia' and state = 'HI';
delete from zip_codes where zip_code = '96760' and city = 'Kurtistown' and state =
'HI';
delete from zip_codes where zip_code = '96761' and city = 'Lahaina' and state =
'HI';
delete from zip_codes where zip_code = '96762' and city = 'Laie' and state = 'HI';
delete from zip_codes where zip_code = '96763' and city = 'Lanai City' and state =
'HI';
delete from zip_codes where zip_code = '96764' and city = 'Laupahoehoe' and state =
'HI';
delete from zip_codes where zip_code = '96765' and city = 'Lawai' and state = 'HI';
delete from zip_codes where zip_code = '96766' and city = 'Lihue' and state = 'HI';
delete from zip_codes where zip_code = '96767' and city = 'Lahaina' and state =
'HI';
delete from zip_codes where zip_code = '96768' and city = 'Makawao' and state =
'HI';
delete from zip_codes where zip_code = '96769' and city = 'Makaweli' and state =
'HI';
delete from zip_codes where zip_code = '96770' and city = 'Maunaloa' and state =
'HI';
delete from zip_codes where zip_code = '96771' and city = 'Mountain View' and state
= 'HI';
delete from zip_codes where zip_code = '96772' and city = 'Naalehu' and state =
'HI';
delete from zip_codes where zip_code = '96773' and city = 'Ninole' and state =
'HI';
delete from zip_codes where zip_code = '96774' and city = 'Ookala' and state =
'HI';
delete from zip_codes where zip_code = '96776' and city = 'Paauilo' and state =
'HI';
delete from zip_codes where zip_code = '96777' and city = 'Pahala' and state =
'HI';
delete from zip_codes where zip_code = '96778' and city = 'Pahoa' and state = 'HI';
delete from zip_codes where zip_code = '96779' and city = 'Paia' and state = 'HI';
delete from zip_codes where zip_code = '96780' and city = 'Papaaloa' and state =
'HI';
delete from zip_codes where zip_code = '96781' and city = 'Papaikou' and state =
'HI';
delete from zip_codes where zip_code = '96782' and city = 'Pearl City' and state =
'HI';
delete from zip_codes where zip_code = '96783' and city = 'Pepeekeo' and state =
'HI';
delete from zip_codes where zip_code = '96784' and city = 'Puunene' and state =
'HI';
delete from zip_codes where zip_code = '96785' and city = 'Volcano' and state =
'HI';
delete from zip_codes where zip_code = '96786' and city = 'Wahiawa' and state =
'HI';
delete from zip_codes where zip_code = '96788' and city = 'Pukalani' and state =
'HI';
delete from zip_codes where zip_code = '96789' and city = 'Mililani' and state =
'HI';
delete from zip_codes where zip_code = '96790' and city = 'Kula' and state = 'HI';
delete from zip_codes where zip_code = '96791' and city = 'Waialua' and state =
'HI';
delete from zip_codes where zip_code = '96792' and city = 'Waianae' and state =
'HI';
delete from zip_codes where zip_code = '96793' and city = 'Wailuku' and state =
'HI';
delete from zip_codes where zip_code = '96795' and city = 'Waimanalo' and state =
'HI';
delete from zip_codes where zip_code = '96796' and city = 'Waimea' and state =
'HI';
delete from zip_codes where zip_code = '96797' and city = 'Waipahu' and state =
'HI';
delete from zip_codes where zip_code = '96799' and city = 'Pago Pago' and state =
'AS';
delete from zip_codes where zip_code = '96801' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96802' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96803' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96804' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96805' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96806' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96807' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96808' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96809' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96810' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96811' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96812' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96813' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96814' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96815' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96816' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96817' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96818' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96819' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96820' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96821' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96822' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96823' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96824' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96825' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96826' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96828' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96830' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96836' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96837' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96838' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96839' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96840' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96841' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96843' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96844' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96846' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96847' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96848' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96849' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96850' and city = 'Honolulu' and state =
'HI';
delete from zip_codes where zip_code = '96853' and city = 'Jbphh' and state = 'HI';
delete from zip_codes where zip_code = '96854' and city = 'Wheeler Army Airfield'
and state = 'HI';
delete from zip_codes where zip_code = '96857' and city = 'Schofield Barracks' and
state = 'HI';
delete from zip_codes where zip_code = '96858' and city = 'Fort Shafter' and state
= 'HI';
delete from zip_codes where zip_code = '96859' and city = 'Tripler Army Medical
Center' and state = 'HI';
delete from zip_codes where zip_code = '96860' and city = 'Jbphh' and state = 'HI';
delete from zip_codes where zip_code = '96861' and city = 'Camp H M Smith' and
state = 'HI';
delete from zip_codes where zip_code = '96863' and city = 'Mcbh Kaneohe Bay' and
state = 'HI';
delete from zip_codes where zip_code = '96898' and city = 'Wake Island' and state =
'HI';
delete from zip_codes where zip_code = '96910' and city = 'Hagatna' and state =
'GU';
delete from zip_codes where zip_code = '96912' and city = 'Dededo' and state =
'GU';
delete from zip_codes where zip_code = '96913' and city = 'Barrigada' and state =
'GU';
delete from zip_codes where zip_code = '96915' and city = 'Santa Rita' and state =
'GU';
delete from zip_codes where zip_code = '96916' and city = 'Merizo' and state =
'GU';
delete from zip_codes where zip_code = '96917' and city = 'Inarajan' and state =
'GU';
delete from zip_codes where zip_code = '96919' and city = 'Agana Heights' and state
= 'GU';
delete from zip_codes where zip_code = '96921' and city = 'Barrigada' and state =
'GU';
delete from zip_codes where zip_code = '96923' and city = 'Mangilao' and state =
'GU';
delete from zip_codes where zip_code = '96928' and city = 'Agat' and state = 'GU';
delete from zip_codes where zip_code = '96929' and city = 'Yigo' and state = 'GU';
delete from zip_codes where zip_code = '96931' and city = 'Tamuning' and state =
'GU';
delete from zip_codes where zip_code = '96932' and city = 'Hagatna' and state =
'GU';
delete from zip_codes where zip_code = '96939' and city = 'Palau' and state = 'PW';
delete from zip_codes where zip_code = '96940' and city = 'Palau' and state = 'PW';
delete from zip_codes where zip_code = '96941' and city = 'Pohnpei' and state =
'FM';
delete from zip_codes where zip_code = '96942' and city = 'Chuuk' and state = 'FM';
delete from zip_codes where zip_code = '96943' and city = 'Yap' and state = 'FM';
delete from zip_codes where zip_code = '96944' and city = 'Kosrae' and state =
'FM';
delete from zip_codes where zip_code = '96950' and city = 'Saipan' and state =
'MP';
delete from zip_codes where zip_code = '96952' and city = 'Tinian' and state =
'MP';
delete from zip_codes where zip_code = '96960' and city = 'Majuro' and state =
'MH';
delete from zip_codes where zip_code = '96970' and city = 'Ebeye' and state = 'MH';
delete from zip_codes where zip_code = '98852' and city = 'Stehekin' and state =
'WA';
delete from zip_codes where zip_code = '99545' and city = 'Kongiganak' and state =
'AK';
delete from zip_codes where zip_code = '99546' and city = 'Adak' and state = 'AK';
delete from zip_codes where zip_code = '99548' and city = 'Chignik Lake' and state
= 'AK';
delete from zip_codes where zip_code = '99549' and city = 'Port Heiden' and state =
'AK';
delete from zip_codes where zip_code = '99551' and city = 'Akiachak' and state =
'AK';
delete from zip_codes where zip_code = '99552' and city = 'Akiak' and state = 'AK';
delete from zip_codes where zip_code = '99553' and city = 'Akutan' and state =
'AK';
delete from zip_codes where zip_code = '99554' and city = 'Alakanuk' and state =
'AK';
delete from zip_codes where zip_code = '99555' and city = 'Aleknagik' and state =
'AK';
delete from zip_codes where zip_code = '99557' and city = 'Aniak' and state = 'AK';
delete from zip_codes where zip_code = '99558' and city = 'Anvik' and state = 'AK';
delete from zip_codes where zip_code = '99559' and city = 'Bethel' and state =
'AK';
delete from zip_codes where zip_code = '99561' and city = 'Chefornak' and state =
'AK';
delete from zip_codes where zip_code = '99563' and city = 'Chevak' and state =
'AK';
delete from zip_codes where zip_code = '99564' and city = 'Chignik' and state =
'AK';
delete from zip_codes where zip_code = '99565' and city = 'Chignik Lagoon' and
state = 'AK';
delete from zip_codes where zip_code = '99569' and city = 'Clarks Point' and state
= 'AK';
delete from zip_codes where zip_code = '99571' and city = 'Cold Bay' and state =
'AK';
delete from zip_codes where zip_code = '99575' and city = 'Crooked Creek' and state
= 'AK';
delete from zip_codes where zip_code = '99576' and city = 'Dillingham' and state =
'AK';
delete from zip_codes where zip_code = '99579' and city = 'Egegik' and state =
'AK';
delete from zip_codes where zip_code = '99580' and city = 'Ekwok' and state = 'AK';
delete from zip_codes where zip_code = '99581' and city = 'Emmonak' and state =
'AK';
delete from zip_codes where zip_code = '99583' and city = 'False Pass' and state =
'AK';
delete from zip_codes where zip_code = '99585' and city = 'Marshall' and state =
'AK';
delete from zip_codes where zip_code = '99589' and city = 'Goodnews Bay' and state
= 'AK';
delete from zip_codes where zip_code = '99590' and city = 'Grayling' and state =
'AK';
delete from zip_codes where zip_code = '99591' and city = 'Saint George Island' and
state = 'AK';
delete from zip_codes where zip_code = '99602' and city = 'Holy Cross' and state =
'AK';
delete from zip_codes where zip_code = '99606' and city = 'Iliamna' and state =
'AK';
delete from zip_codes where zip_code = '99607' and city = 'Kalskag' and state =
'AK';
delete from zip_codes where zip_code = '99609' and city = 'Kasigluk' and state =
'AK';
delete from zip_codes where zip_code = '99612' and city = 'King Cove' and state =
'AK';
delete from zip_codes where zip_code = '99613' and city = 'King Salmon' and state =
'AK';
delete from zip_codes where zip_code = '99614' and city = 'Kipnuk' and state =
'AK';
delete from zip_codes where zip_code = '99620' and city = 'Kotlik' and state =
'AK';
delete from zip_codes where zip_code = '99621' and city = 'Kwethluk' and state =
'AK';
delete from zip_codes where zip_code = '99622' and city = 'Kwigillingok' and state
= 'AK';
delete from zip_codes where zip_code = '99624' and city = 'Larsen Bay' and state =
'AK';
delete from zip_codes where zip_code = '99625' and city = 'Levelock' and state =
'AK';
delete from zip_codes where zip_code = '99626' and city = 'Lower Kalskag' and state
= 'AK';
delete from zip_codes where zip_code = '99627' and city = 'McGrath' and state =
'AK';
delete from zip_codes where zip_code = '99628' and city = 'Manokotak' and state =
'AK';
delete from zip_codes where zip_code = '99630' and city = 'Mekoryuk' and state =
'AK';
delete from zip_codes where zip_code = '99632' and city = 'Mountain Village' and
state = 'AK';
delete from zip_codes where zip_code = '99633' and city = 'Naknek' and state =
'AK';
delete from zip_codes where zip_code = '99634' and city = 'Napakiak' and state =
'AK';
delete from zip_codes where zip_code = '99636' and city = 'New Stuyahok' and state
= 'AK';
delete from zip_codes where zip_code = '99637' and city = 'Toksook Bay' and state =
'AK';
delete from zip_codes where zip_code = '99638' and city = 'Nikolski' and state =
'AK';
delete from zip_codes where zip_code = '99640' and city = 'Nondalton' and state =
'AK';
delete from zip_codes where zip_code = '99641' and city = 'Nunapitchuk' and state =
'AK';
delete from zip_codes where zip_code = '99643' and city = 'Old Harbor' and state =
'AK';
delete from zip_codes where zip_code = '99647' and city = 'Pedro Bay' and state =
'AK';
delete from zip_codes where zip_code = '99648' and city = 'Perryville' and state =
'AK';
delete from zip_codes where zip_code = '99649' and city = 'Pilot Point' and state =
'AK';
delete from zip_codes where zip_code = '99650' and city = 'Pilot Station' and state
= 'AK';
delete from zip_codes where zip_code = '99651' and city = 'Platinum' and state =
'AK';
delete from zip_codes where zip_code = '99653' and city = 'Port Alsworth' and state
= 'AK';
delete from zip_codes where zip_code = '99655' and city = 'Quinhagak' and state =
'AK';
delete from zip_codes where zip_code = '99656' and city = 'Red Devil' and state =
'AK';
delete from zip_codes where zip_code = '99657' and city = 'Russian Mission' and
state = 'AK';
delete from zip_codes where zip_code = '99658' and city = 'Saint Marys' and state =
'AK';
delete from zip_codes where zip_code = '99659' and city = 'Saint Michael' and state
= 'AK';
delete from zip_codes where zip_code = '99660' and city = 'Saint Paul Island' and
state = 'AK';
delete from zip_codes where zip_code = '99661' and city = 'Sand Point' and state =
'AK';
delete from zip_codes where zip_code = '99662' and city = 'Scammon Bay' and state =
'AK';
delete from zip_codes where zip_code = '99665' and city = 'Shageluk' and state =
'AK';
delete from zip_codes where zip_code = '99666' and city = 'Nunam Iqua' and state =
'AK';
delete from zip_codes where zip_code = '99667' and city = 'Skwentna' and state =
'AK';
delete from zip_codes where zip_code = '99668' and city = 'Sleetmute' and state =
'AK';
delete from zip_codes where zip_code = '99670' and city = 'South Naknek' and state
= 'AK';
delete from zip_codes where zip_code = '99671' and city = 'Stebbins' and state =
'AK';
delete from zip_codes where zip_code = '99675' and city = 'Takotna' and state =
'AK';
delete from zip_codes where zip_code = '99678' and city = 'Togiak' and state =
'AK';
delete from zip_codes where zip_code = '99679' and city = 'Tuluksak' and state =
'AK';
delete from zip_codes where zip_code = '99680' and city = 'Tuntutuliak' and state =
'AK';
delete from zip_codes where zip_code = '99681' and city = 'Tununak' and state =
'AK';
delete from zip_codes where zip_code = '99682' and city = 'Tyonek' and state =
'AK';
delete from zip_codes where zip_code = '99684' and city = 'Unalakleet' and state =
'AK';
delete from zip_codes where zip_code = '99685' and city = 'Unalaska' and state =
'AK';
delete from zip_codes where zip_code = '99689' and city = 'Yakutat' and state =
'AK';
delete from zip_codes where zip_code = '99690' and city = 'Nightmute' and state =
'AK';
delete from zip_codes where zip_code = '99691' and city = 'Nikolai' and state =
'AK';
delete from zip_codes where zip_code = '99692' and city = 'Dutch Harbor' and state
= 'AK';
delete from zip_codes where zip_code = '99720' and city = 'Allakaket' and state =
'AK';
delete from zip_codes where zip_code = '99721' and city = 'Anaktuvuk Pass' and
state = 'AK';
delete from zip_codes where zip_code = '99722' and city = 'Arctic Village' and
state = 'AK';
delete from zip_codes where zip_code = '99723' and city = 'Barrow' and state =
'AK';
delete from zip_codes where zip_code = '99724' and city = 'Beaver' and state =
'AK';
delete from zip_codes where zip_code = '99727' and city = 'Buckland' and state =
'AK';
delete from zip_codes where zip_code = '99736' and city = 'Deering' and state =
'AK';
delete from zip_codes where zip_code = '99739' and city = 'Elim' and state = 'AK';
delete from zip_codes where zip_code = '99740' and city = 'Fort Yukon' and state =
'AK';
delete from zip_codes where zip_code = '99741' and city = 'Galena' and state =
'AK';
delete from zip_codes where zip_code = '99742' and city = 'Gambell' and state =
'AK';
delete from zip_codes where zip_code = '99745' and city = 'Hughes' and state =
'AK';
delete from zip_codes where zip_code = '99746' and city = 'Huslia' and state =
'AK';
delete from zip_codes where zip_code = '99747' and city = 'Kaktovik' and state =
'AK';
delete from zip_codes where zip_code = '99748' and city = 'Kaltag' and state =
'AK';
delete from zip_codes where zip_code = '99749' and city = 'Kiana' and state = 'AK';
delete from zip_codes where zip_code = '99750' and city = 'Kivalina' and state =
'AK';
delete from zip_codes where zip_code = '99751' and city = 'Kobuk' and state = 'AK';
delete from zip_codes where zip_code = '99752' and city = 'Kotzebue' and state =
'AK';
delete from zip_codes where zip_code = '99753' and city = 'Koyuk' and state = 'AK';
delete from zip_codes where zip_code = '99754' and city = 'Koyukuk' and state =
'AK';
delete from zip_codes where zip_code = '99755' and city = 'Denali National Park'
and state = 'AK';
delete from zip_codes where zip_code = '99757' and city = 'Lake Minchumina' and
state = 'AK';
delete from zip_codes where zip_code = '99759' and city = 'Point Lay' and state =
'AK';
delete from zip_codes where zip_code = '99761' and city = 'Noatak' and state =
'AK';
delete from zip_codes where zip_code = '99762' and city = 'Nome' and state = 'AK';
delete from zip_codes where zip_code = '99763' and city = 'Noorvik' and state =
'AK';
delete from zip_codes where zip_code = '99765' and city = 'Nulato' and state =
'AK';
delete from zip_codes where zip_code = '99766' and city = 'Point Hope' and state =
'AK';
delete from zip_codes where zip_code = '99767' and city = 'Rampart' and state =
'AK';
delete from zip_codes where zip_code = '99768' and city = 'Ruby' and state = 'AK';
delete from zip_codes where zip_code = '99769' and city = 'Savoonga' and state =
'AK';
delete from zip_codes where zip_code = '99770' and city = 'Selawik' and state =
'AK';
delete from zip_codes where zip_code = '99771' and city = 'Shaktoolik' and state =
'AK';
delete from zip_codes where zip_code = '99772' and city = 'Shishmaref' and state =
'AK';
delete from zip_codes where zip_code = '99773' and city = 'Shungnak' and state =
'AK';
delete from zip_codes where zip_code = '99774' and city = 'Stevens Village' and
state = 'AK';
delete from zip_codes where zip_code = '99777' and city = 'Tanana' and state =
'AK';
delete from zip_codes where zip_code = '99778' and city = 'Teller' and state =
'AK';
delete from zip_codes where zip_code = '99782' and city = 'Wainwright' and state =
'AK';
delete from zip_codes where zip_code = '99783' and city = 'Wales' and state = 'AK';
delete from zip_codes where zip_code = '99784' and city = 'White Mountain' and
state = 'AK';
delete from zip_codes where zip_code = '99785' and city = 'Brevig Mission' and
state = 'AK';
delete from zip_codes where zip_code = '99786' and city = 'Ambler' and state =
'AK';
delete from zip_codes where zip_code = '99788' and city = 'Chalkyitsik' and state =
'AK';
delete from zip_codes where zip_code = '99789' and city = 'Nuiqsut' and state =
'AK';
delete from zip_codes where zip_code = '99791' and city = 'Atqasuk' and state =
'AK';
delete from zip_codes where zip_code = '99825' and city = 'Elfin Cove' and state =
'AK';
delete from zip_codes where zip_code = '99826' and city = 'Gustavus' and state =
'AK';
delete from zip_codes where zip_code = '99832' and city = 'Pelican' and state =
'AK';
delete from zip_codes where zip_code = '99836' and city = 'Port Alexander' and
state = 'AK';
delete from zip_codes where zip_code = '99841' and city = 'Tenakee Springs' and
state = 'AK';
delete from zip_codes where zip_code = '99921' and city = 'Craig' and state = 'AK';
delete from zip_codes where zip_code = '99922' and city = 'Hydaburg' and state =
'AK';
delete from zip_codes where zip_code = '99925' and city = 'Klawock' and state =
'AK';
delete from zip_codes where zip_code = '99927' and city = 'Point Baker' and state =
'AK';
delete from zip_codes where zip_code = 'A0E 0B3' and city = 'St Bernards-jacques
Fontaine' and state = 'NL';
delete from zip_codes where zip_code = 'A0E 0C4' and city = 'South East Bight' and
state = 'NL';
delete from zip_codes where zip_code = 'A0H 0B9' and city = 'Mccallum' and state =
'NL';
delete from zip_codes where zip_code = 'A0K 0J9' and city = 'Lodge Bay' and state =
'NL';
delete from zip_codes where zip_code = 'A0N 0A6' and city = 'Francois' and state =
'NL';
delete from zip_codes where zip_code = 'A0N 2K0' and city = 'Francois' and state =
'NL';
delete from zip_codes where zip_code = 'A0P 0A1' and city = 'Nain' and state =
'NL';
delete from zip_codes where zip_code = 'A0P 0A4' and city = 'Makkovik' and state =
'NL';
delete from zip_codes where zip_code = 'A0P 0A7' and city = 'Hopedale' and state =
'NL';
delete from zip_codes where zip_code = 'A0P 0A8' and city = 'Postville' and state =
'NL';
delete from zip_codes where zip_code = 'A0P 1A0' and city = 'Natuashish' and state
= 'NL';
delete from zip_codes where zip_code = 'A0P 1G0' and city = 'Hopedale' and state =
'NL';
delete from zip_codes where zip_code = 'A0P 1J0' and city = 'Makkovik' and state =
'NL';
delete from zip_codes where zip_code = 'A0P 1L0' and city = 'Nain' and state =
'NL';
delete from zip_codes where zip_code = 'A0P 1N0' and city = 'Postville' and state =
'NL';
delete from zip_codes where zip_code = 'A1M 0A1' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0A2' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0A3' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0A4' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0A5' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0A6' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0A7' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0A8' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0A9' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0B1' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0B2' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0B3' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0B4' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0B5' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0B6' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0B7' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0B8' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0B9' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0C1' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0C2' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0C3' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0C4' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0C5' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0C6' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0C7' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0C8' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0C9' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0E1' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0E2' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0E3' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0E4' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0E5' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0E6' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0E7' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0E8' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0E9' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0G1' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0G2' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0G3' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 0G4' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'A1M 3T5' and city = 'Portugal Cove-st
Philips' and state = 'NL';
delete from zip_codes where zip_code = 'B0H 0B1' and city = 'Cross Roads Country
Harbour' and state = 'NS';
delete from zip_codes where zip_code = 'B0W 0A9' and city = 'Ste-anne-du-ruisseau'
and state = 'NS';
delete from zip_codes where zip_code = 'B3Z 0C9' and city = 'Head Of St Margarets
Bay' and state = 'NS';
delete from zip_codes where zip_code = 'B3Z 0E5' and city = 'Head Of St Margarets
Bay' and state = 'NS';
delete from zip_codes where zip_code = 'B3Z 0E6' and city = 'Head Of St Margarets
Bay' and state = 'NS';
delete from zip_codes where zip_code = 'B3Z 0E7' and city = 'Head Of St Margarets
Bay' and state = 'NS';
delete from zip_codes where zip_code = 'B3Z 0J1' and city = 'Head Of St Margarets
Bay' and state = 'NS';
delete from zip_codes where zip_code = 'B3Z 0L3' and city = 'Head Of St Margarets
Bay' and state = 'NS';
delete from zip_codes where zip_code = 'B3Z 0L4' and city = 'Head Of St Margarets
Bay' and state = 'NS';
delete from zip_codes where zip_code = 'B3Z 0N8' and city = 'Head Of St Margarets
Bay' and state = 'NS';
delete from zip_codes where zip_code = 'B4V 4W6' and city = 'Molega Lake' and state
= 'NS';
delete from zip_codes where zip_code = 'B4V 7E3' and city = 'Baker Settlement' and
state = 'NS';
delete from zip_codes where zip_code = 'B4V 7E4' and city = 'Baker Settlement' and
state = 'NS';
delete from zip_codes where zip_code = 'B4V 7E5' and city = 'Baker Settlement' and
state = 'NS';
delete from zip_codes where zip_code = 'B4V 7E6' and city = 'Baker Settlement' and
state = 'NS';
delete from zip_codes where zip_code = 'B4V 7E7' and city = 'Baker Settlement' and
state = 'NS';
delete from zip_codes where zip_code = 'B4V 7E8' and city = 'Baker Settlement' and
state = 'NS';
delete from zip_codes where zip_code = 'B4V 7E9' and city = 'Baker Settlement' and
state = 'NS';
delete from zip_codes where zip_code = 'B4V 7G1' and city = 'Baker Settlement' and
state = 'NS';
delete from zip_codes where zip_code = 'B4V 7G2' and city = 'Baker Settlement' and
state = 'NS';
delete from zip_codes where zip_code = 'B4V 7G3' and city = 'Baker Settlement' and
state = 'NS';
delete from zip_codes where zip_code = 'B4V 7G4' and city = 'Baker Settlement' and
state = 'NS';
delete from zip_codes where zip_code = 'B4V 7G5' and city = 'Baker Settlement' and
state = 'NS';
delete from zip_codes where zip_code = 'B4V 7G6' and city = 'Baker Settlement' and
state = 'NS';
delete from zip_codes where zip_code = 'B4V 7G7' and city = 'Baker Settlement' and
state = 'NS';
delete from zip_codes where zip_code = 'B4V 7G8' and city = 'Baker Settlement' and
state = 'NS';
delete from zip_codes where zip_code = 'B4V 7G9' and city = 'Baker Settlement' and
state = 'NS';
delete from zip_codes where zip_code = 'B4V 7H1' and city = 'Baker Settlement' and
state = 'NS';
delete from zip_codes where zip_code = 'B4V 7H2' and city = 'Baker Settlement' and
state = 'NS';
delete from zip_codes where zip_code = 'B4V 7H3' and city = 'Baker Settlement' and
state = 'NS';
delete from zip_codes where zip_code = 'B4V 7H4' and city = 'Baker Settlement' and
state = 'NS';
delete from zip_codes where zip_code = 'B4V 7H5' and city = 'Baker Settlement' and
state = 'NS';
delete from zip_codes where zip_code = 'B4V 7H6' and city = 'Baker Settlement' and
state = 'NS';
delete from zip_codes where zip_code = 'B4V 7H7' and city = 'Baker Settlement' and
state = 'NS';
delete from zip_codes where zip_code = 'B4V 7H8' and city = 'Baker Settlement' and
state = 'NS';
delete from zip_codes where zip_code = 'B4V 7H9' and city = 'Baker Settlement' and
state = 'NS';
delete from zip_codes where zip_code = 'B4V 7J1' and city = 'Baker Settlement' and
state = 'NS';
delete from zip_codes where zip_code = 'B4V 7J2' and city = 'Baker Settlement' and
state = 'NS';
delete from zip_codes where zip_code = 'B4V 7J3' and city = 'Baker Settlement' and
state = 'NS';
delete from zip_codes where zip_code = 'B4V 7J4' and city = 'Baker Settlement' and
state = 'NS';
delete from zip_codes where zip_code = 'B4V 7J5' and city = 'Baker Settlement' and
state = 'NS';
delete from zip_codes where zip_code = 'B4V 7J6' and city = 'Baker Settlement' and
state = 'NS';
delete from zip_codes where zip_code = 'B4V 8N5' and city = 'Molega Lake' and state
= 'NS';
delete from zip_codes where zip_code = 'B4V 8P8' and city = 'Molega Lake' and state
= 'NS';
delete from zip_codes where zip_code = 'B4V 8P9' and city = 'Molega Lake' and state
= 'NS';
delete from zip_codes where zip_code = 'B4V 8S8' and city = 'Molega Lake' and state
= 'NS';
delete from zip_codes where zip_code = 'B4V 8S9' and city = 'Molega Lake' and state
= 'NS';
delete from zip_codes where zip_code = 'B4V 8T1' and city = 'Molega Lake' and state
= 'NS';
delete from zip_codes where zip_code = 'B4V 8T2' and city = 'Molega Lake' and state
= 'NS';
delete from zip_codes where zip_code = 'B4V 8T3' and city = 'Molega Lake' and state
= 'NS';
delete from zip_codes where zip_code = 'B4V 8T4' and city = 'Molega Lake' and state
= 'NS';
delete from zip_codes where zip_code = 'B5A 5L5' and city = 'Hillview' and state =
'NS';
delete from zip_codes where zip_code = 'B5A 5X4' and city = 'Hillview' and state =
'NS';
delete from zip_codes where zip_code = 'B5A 5Y2' and city = 'Barrio Lake' and state
= 'NS';
delete from zip_codes where zip_code = 'B5A 5Z1' and city = 'Alder Plains' and
state = 'NS';
delete from zip_codes where zip_code = 'B6L 0C2' and city = 'Murray Siding' and
state = 'NS';
delete from zip_codes where zip_code = 'B6L 3B4' and city = 'Murray Siding' and
state = 'NS';
delete from zip_codes where zip_code = 'B6L 3B5' and city = 'Murray Siding' and
state = 'NS';
delete from zip_codes where zip_code = 'B6L 3J1' and city = 'Murray Siding' and
state = 'NS';
delete from zip_codes where zip_code = 'B6L 3J2' and city = 'Murray Siding' and
state = 'NS';
delete from zip_codes where zip_code = 'B6L 3L1' and city = 'Murray Siding' and
state = 'NS';
delete from zip_codes where zip_code = 'B6L 3L2' and city = 'Murray Siding' and
state = 'NS';
delete from zip_codes where zip_code = 'B6L 3M4' and city = 'Murray Siding' and
state = 'NS';
delete from zip_codes where zip_code = 'B6L 3M5' and city = 'Murray Siding' and
state = 'NS';
delete from zip_codes where zip_code = 'B6L 3M6' and city = 'Murray Siding' and
state = 'NS';
delete from zip_codes where zip_code = 'B6L 3M7' and city = 'Murray Siding' and
state = 'NS';
delete from zip_codes where zip_code = 'B6L 3M8' and city = 'Murray Siding' and
state = 'NS';
delete from zip_codes where zip_code = 'B6L 3M9' and city = 'Murray Siding' and
state = 'NS';
delete from zip_codes where zip_code = 'B6L 3N1' and city = 'Murray Siding' and
state = 'NS';
delete from zip_codes where zip_code = 'B6L 3T4' and city = 'Murray Siding' and
state = 'NS';
delete from zip_codes where zip_code = 'B6L 3T5' and city = 'Murray Siding' and
state = 'NS';
delete from zip_codes where zip_code = 'B6L 3X4' and city = 'Murray Siding' and
state = 'NS';
delete from zip_codes where zip_code = 'B6L 3X5' and city = 'Murray Siding' and
state = 'NS';
delete from zip_codes where zip_code = 'B6L 3X6' and city = 'Murray Siding' and
state = 'NS';
delete from zip_codes where zip_code = 'B6L 4B6' and city = 'Murray Siding' and
state = 'NS';
delete from zip_codes where zip_code = 'B6L 4B7' and city = 'Murray Siding' and
state = 'NS';
delete from zip_codes where zip_code = 'B6L 4B8' and city = 'Murray Siding' and
state = 'NS';
delete from zip_codes where zip_code = 'B6L 4B9' and city = 'Murray Siding' and
state = 'NS';
delete from zip_codes where zip_code = 'B6L 4C1' and city = 'Murray Siding' and
state = 'NS';
delete from zip_codes where zip_code = 'B6L 4C2' and city = 'Murray Siding' and
state = 'NS';
delete from zip_codes where zip_code = 'B6L 4J4' and city = 'Murray Siding' and
state = 'NS';
delete from zip_codes where zip_code = 'B6L 4J5' and city = 'Murray Siding' and
state = 'NS';
delete from zip_codes where zip_code = 'B6L 4J8' and city = 'Murray Siding' and
state = 'NS';
delete from zip_codes where zip_code = 'B6L 4M3' and city = 'Murray Siding' and
state = 'NS';
delete from zip_codes where zip_code = 'B6L 4M4' and city = 'Murray Siding' and
state = 'NS';
delete from zip_codes where zip_code = 'B6L 4M5' and city = 'Murray Siding' and
state = 'NS';
delete from zip_codes where zip_code = 'B6L 4M6' and city = 'Murray Siding' and
state = 'NS';
delete from zip_codes where zip_code = 'B6L 4N7' and city = 'Murray Siding' and
state = 'NS';
delete from zip_codes where zip_code = 'B6L 4N8' and city = 'Murray Siding' and
state = 'NS';
delete from zip_codes where zip_code = 'C1E 2R7' and city = 'South Winsloe' and
state = 'PE';
delete from zip_codes where zip_code = 'C1E 2R8' and city = 'South Winsloe' and
state = 'PE';
delete from zip_codes where zip_code = 'C1E 2S6' and city = 'North Winsloe' and
state = 'PE';
delete from zip_codes where zip_code = 'C1E 2S7' and city = 'North Winsloe' and
state = 'PE';
delete from zip_codes where zip_code = 'C1E 2T8' and city = 'South Winsloe' and
state = 'PE';
delete from zip_codes where zip_code = 'C1E 2T9' and city = 'South Winsloe' and
state = 'PE';
delete from zip_codes where zip_code = 'C1E 2V3' and city = 'North Winsloe' and
state = 'PE';
delete from zip_codes where zip_code = 'C1E 2Y2' and city = 'South Winsloe' and
state = 'PE';
delete from zip_codes where zip_code = 'C1E 2Y3' and city = 'South Winsloe' and
state = 'PE';
delete from zip_codes where zip_code = 'C1E 2Y4' and city = 'South Winsloe' and
state = 'PE';
delete from zip_codes where zip_code = 'C1E 2Y5' and city = 'South Winsloe' and
state = 'PE';
delete from zip_codes where zip_code = 'C1E 2Y6' and city = 'South Winsloe' and
state = 'PE';
delete from zip_codes where zip_code = 'C1E 2Y7' and city = 'North Winsloe' and
state = 'PE';
delete from zip_codes where zip_code = 'C1E 2Y8' and city = 'North Winsloe' and
state = 'PE';
delete from zip_codes where zip_code = 'C1E 2Y9' and city = 'North Winsloe' and
state = 'PE';
delete from zip_codes where zip_code = 'C1E 2Z1' and city = 'North Winsloe' and
state = 'PE';
delete from zip_codes where zip_code = 'C1E 2Z7' and city = 'North Winsloe' and
state = 'PE';
delete from zip_codes where zip_code = 'C1E 3H5' and city = 'South Winsloe' and
state = 'PE';
delete from zip_codes where zip_code = 'E3E 0A5' and city = 'Kingsclear First
Nation' and state = 'NB';
delete from zip_codes where zip_code = 'E3E 0C1' and city = 'Kingsclear First
Nation' and state = 'NB';
delete from zip_codes where zip_code = 'E3Y 0A1' and city = 'Grand-sault/grand
Falls' and state = 'NB';
delete from zip_codes where zip_code = 'E3Y 0A5' and city = 'Grand-sault/grand
Falls' and state = 'NB';
delete from zip_codes where zip_code = 'E3Y 0A9' and city = 'Grand-sault/grand
Falls' and state = 'NB';
delete from zip_codes where zip_code = 'E3Y 0B4' and city = 'Grand-sault/grand
Falls' and state = 'NB';
delete from zip_codes where zip_code = 'E3Y 0C4' and city = 'Grand-sault/grand
Falls' and state = 'NB';
delete from zip_codes where zip_code = 'E3Y 4A6' and city = 'Grand-sault/grand
Falls' and state = 'NB';
delete from zip_codes where zip_code = 'E3Y 4A8' and city = 'Grand-sault/grand
Falls' and state = 'NB';
delete from zip_codes where zip_code = 'E3Z 0A1' and city = 'Grand-sault/grand
Falls' and state = 'NB';
delete from zip_codes where zip_code = 'E3Z 0A3' and city = 'Grand-sault/grand
Falls' and state = 'NB';
delete from zip_codes where zip_code = 'E3Z 0A4' and city = 'Dsl De
Grand-sault/falls' and state = 'NB';
delete from zip_codes where zip_code = 'E3Z 0A5' and city = 'Grand-sault/grand
Falls' and state = 'NB';
delete from zip_codes where zip_code = 'E3Z 0A6' and city = 'Grand-sault/grand
Falls' and state = 'NB';
delete from zip_codes where zip_code = 'E3Z 0A7' and city = 'Grand-sault/grand
Falls' and state = 'NB';
delete from zip_codes where zip_code = 'E3Z 0A8' and city = 'Grand-sault/grand
Falls' and state = 'NB';
delete from zip_codes where zip_code = 'E3Z 0A9' and city = 'Grand-sault/grand
Falls' and state = 'NB';
delete from zip_codes where zip_code = 'E3Z 0B3' and city = 'Grand-sault/grand
Falls' and state = 'NB';
delete from zip_codes where zip_code = 'E3Z 0B4' and city = 'Dsl De
Grand-sault/falls' and state = 'NB';
delete from zip_codes where zip_code = 'E3Z 0B6' and city = 'Grand-sault/grand
Falls' and state = 'NB';
delete from zip_codes where zip_code = 'E3Z 0B8' and city = 'Grand-sault/grand
Falls' and state = 'NB';
delete from zip_codes where zip_code = 'E3Z 0B9' and city = 'Dsl De
Grand-sault/falls' and state = 'NB';
delete from zip_codes where zip_code = 'E3Z 0C1' and city = 'Grand-sault/grand
Falls' and state = 'NB';
delete from zip_codes where zip_code = 'E3Z 0C2' and city = 'Grand-sault/grand
Falls' and state = 'NB';
delete from zip_codes where zip_code = 'E3Z 3G6' and city = 'Grand-sault/grand
Falls' and state = 'NB';
delete from zip_codes where zip_code = 'E4C 0A7' and city = 'Coles Island Queens
Co' and state = 'NB';
delete from zip_codes where zip_code = 'E4C 0B2' and city = 'Coles Island Queens
Co' and state = 'NB';
delete from zip_codes where zip_code = 'E4C 0B4' and city = 'Coles Island Queens
Co' and state = 'NB';
delete from zip_codes where zip_code = 'E4C 0B7' and city = 'Coles Island Queens
Co' and state = 'NB';
delete from zip_codes where zip_code = 'E4E 0A8' and city = 'Little Salmon River
West' and state = 'NB';
delete from zip_codes where zip_code = 'E4E 0E4' and city = 'Little Salmon River
West' and state = 'NB';
delete from zip_codes where zip_code = 'E4R 0E3' and city = 'Shediac Bridge-shediac
River' and state = 'NB';
delete from zip_codes where zip_code = 'E4V 0C4' and city = 'St-antoine Nord' and
state = 'NB';
delete from zip_codes where zip_code = 'E4V 0C5' and city = 'St-antoine Nord' and
state = 'NB';
delete from zip_codes where zip_code = 'E4W 0B9' and city = 'Elsipogtog First
Nation' and state = 'NB';
delete from zip_codes where zip_code = 'E4W 0C1' and city = 'Elsipogtog First
Nation' and state = 'NB';
delete from zip_codes where zip_code = 'E4W 0E9' and city = 'Elsipogtog First
Nation' and state = 'NB';
delete from zip_codes where zip_code = 'E4W 0G5' and city = 'Elsipogtog First
Nation' and state = 'NB';
delete from zip_codes where zip_code = 'E5A 0A5' and city = 'Johnson Settlement
Charlotte C' and state = 'NB';
delete from zip_codes where zip_code = 'E5A 0A6' and city = 'Pleasant Ridge Char
County' and state = 'NB';
delete from zip_codes where zip_code = 'E5B 0A4' and city = 'Ministers Island' and
state = 'NB';
delete from zip_codes where zip_code = 'E5L 0A3' and city = 'Peltoma Settlement'
and state = 'NB';
delete from zip_codes where zip_code = 'E5N 0A4' and city = 'French Village Kings
Co' and state = 'NB';
delete from zip_codes where zip_code = 'E5N 0H8' and city = 'French Village Kings
Co' and state = 'NB';
delete from zip_codes where zip_code = 'E5N 0H9' and city = 'French Village Kings
Co' and state = 'NB';
delete from zip_codes where zip_code = 'E5P 0A6' and city = 'Pleasant Ridge Kings
Co' and state = 'NB';
delete from zip_codes where zip_code = 'E5P 0A7' and city = 'Pleasant Ridge Kings
Co' and state = 'NB';
delete from zip_codes where zip_code = 'E5T 0B2' and city = 'Kiersteadville' and
state = 'NB';
delete from zip_codes where zip_code = 'E5T 0B4' and city = 'Kiersteadville' and
state = 'NB';
delete from zip_codes where zip_code = 'E5T 0B9' and city = 'Kiersteadville' and
state = 'NB';
delete from zip_codes where zip_code = 'E5T 0C3' and city = 'Kiersteadville' and
state = 'NB';
delete from zip_codes where zip_code = 'E6L 0A6' and city = 'Scotch Settlement York
Co' and state = 'NB';
delete from zip_codes where zip_code = 'E7A 0A6' and city = 'Saint-francois-de-
madawaska' and state = 'NB';
delete from zip_codes where zip_code = 'E7A 0B1' and city = 'Saint-francois-de-
madawaska' and state = 'NB';
delete from zip_codes where zip_code = 'E7B 0A9' and city = 'St-joseph-de-
madawaska' and state = 'NB';
delete from zip_codes where zip_code = 'E7C 0A1' and city = 'Madawaska Maliseet
Frst Nation' and state = 'NB';
delete from zip_codes where zip_code = 'E7C 0A2' and city = 'Madawaska Maliseet
Frst Nation' and state = 'NB';
delete from zip_codes where zip_code = 'E7C 0A3' and city = 'Madawaska Maliseet
Frst Nation' and state = 'NB';
delete from zip_codes where zip_code = 'E7C 0A4' and city = 'Madawaska Maliseet
Frst Nation' and state = 'NB';
delete from zip_codes where zip_code = 'E7C 0A5' and city = 'Madawaska Maliseet
Frst Nation' and state = 'NB';
delete from zip_codes where zip_code = 'E7C 0A6' and city = 'Madawaska Maliseet
Frst Nation' and state = 'NB';
delete from zip_codes where zip_code = 'E7C 0B4' and city = 'Madawaska Maliseet
Frst Nation' and state = 'NB';
delete from zip_codes where zip_code = 'E7C 0B6' and city = 'Madawaska Maliseet
Frst Nation' and state = 'NB';
delete from zip_codes where zip_code = 'E7C 0C1' and city = 'Madawaska Maliseet
Frst Nation' and state = 'NB';
delete from zip_codes where zip_code = 'E7L 0A3' and city = 'Florenceville-bristol'
and state = 'NB';
delete from zip_codes where zip_code = 'E7L 0A4' and city = 'Florenceville-bristol'
and state = 'NB';
delete from zip_codes where zip_code = 'E7L 0A9' and city = 'Florenceville-bristol'
and state = 'NB';
delete from zip_codes where zip_code = 'E7L 0B1' and city = 'West Florenceville'
and state = 'NB';
delete from zip_codes where zip_code = 'E7L 0B2' and city = 'Florenceville-bristol'
and state = 'NB';
delete from zip_codes where zip_code = 'E7L 0B3' and city = 'Florenceville-bristol'
and state = 'NB';
delete from zip_codes where zip_code = 'E7L 0B4' and city = 'Florenceville-bristol'
and state = 'NB';
delete from zip_codes where zip_code = 'E7L 0B5' and city = 'Florenceville-bristol'
and state = 'NB';
delete from zip_codes where zip_code = 'E7L 0C4' and city = 'Florenceville-bristol'
and state = 'NB';
delete from zip_codes where zip_code = 'E7M 0B1' and city = 'Woodstock First
Nation' and state = 'NB';
delete from zip_codes where zip_code = 'E7M 0C3' and city = 'Woodstock First
Nation' and state = 'NB';
delete from zip_codes where zip_code = 'E7M 0C5' and city = 'Woodstock First
Nation' and state = 'NB';
delete from zip_codes where zip_code = 'E7P 0A4' and city = 'Waterville Carleton
Co' and state = 'NB';
delete from zip_codes where zip_code = 'E7P 0A5' and city = 'Waterville Carleton
Co' and state = 'NB';
delete from zip_codes where zip_code = 'E8C 0A3' and city = 'Eel River Bar First
Nation' and state = 'NB';
delete from zip_codes where zip_code = 'E8C 0A8' and city = 'Eel River Bar First
Nation' and state = 'NB';
delete from zip_codes where zip_code = 'E8C 0A9' and city = 'Eel River Bar First
Nation' and state = 'NB';
delete from zip_codes where zip_code = 'E8E 2Z4' and city = 'Blackland Restigouche
Co' and state = 'NB';
delete from zip_codes where zip_code = 'E8S 0B4' and city = 'Baie De Petit-
pokemouche' and state = 'NB';
delete from zip_codes where zip_code = 'E8T 0A3' and city = 'Sainte-marie-saint-
raphael' and state = 'NB';
delete from zip_codes where zip_code = 'E8T 0C8' and city = 'Sainte-marie-saint-
raphael' and state = 'NB';
delete from zip_codes where zip_code = 'E9G 0A3' and city = 'Burnt Church First
Nation' and state = 'NB';
delete from zip_codes where zip_code = 'E9G 0A6' and city = 'Burnt Church First
Nation' and state = 'NB';
delete from zip_codes where zip_code = 'E9G 0A7' and city = 'Burnt Church First
Nation' and state = 'NB';
delete from zip_codes where zip_code = 'E9H 0A7' and city = 'Haut-riviere-du-
portage' and state = 'NB';
delete from zip_codes where zip_code = 'E9H 0B1' and city = 'Haut-riviere-du-
portage' and state = 'NB';
delete from zip_codes where zip_code = 'E9H 0B2' and city = 'Haut-riviere-du-
portage' and state = 'NB';
delete from zip_codes where zip_code = 'G0A 0A1' and city = 'Wendake' and state =
'QC';
delete from zip_codes where zip_code = 'G0A 0A2' and city = 'St-joachim-de-
montmorency' and state = 'QC';
delete from zip_codes where zip_code = 'G0A 0B4' and city = 'Saint-urbain-de-
charlevoix' and state = 'QC';
delete from zip_codes where zip_code = 'G0A 0C4' and city = 'Petite-riviere-saint-
francois' and state = 'QC';
delete from zip_codes where zip_code = 'G0A 0C6' and city = 'Saint-pierre-ile-
d''orleans' and state = 'QC';
delete from zip_codes where zip_code = 'G0A 0C8' and city = 'Saint-gabriel-de-
valcartier' and state = 'QC';
delete from zip_codes where zip_code = 'G0A 0E4' and city = 'Saint-laurent-ile-
d''orleans' and state = 'QC';
delete from zip_codes where zip_code = 'G0C 0B3' and city = 'Saint-elzear-de-
bonaventure' and state = 'QC';
delete from zip_codes where zip_code = 'G0C 0B9' and city = 'Cascapedia-saint-
jules' and state = 'QC';
delete from zip_codes where zip_code = 'G0C 0E1' and city = 'Saint-simeon-de-
bonaventure' and state = 'QC';
delete from zip_codes where zip_code = 'G0G 0A7' and city = 'Port-menier' and state
= 'QC';
delete from zip_codes where zip_code = 'G0G 0G0' and city = 'Athlete''s Village'
and state = 'QC';
delete from zip_codes where zip_code = 'G0G 2Y0' and city = 'Port-menier' and state
= 'QC';
delete from zip_codes where zip_code = 'G0J 0B8' and city = 'Saint-alexis-de-
matapedia' and state = 'QC';
delete from zip_codes where zip_code = 'G0J 0C6' and city = 'Ste-irene-de-
matapedia' and state = 'QC';
delete from zip_codes where zip_code = 'G0J 0E1' and city = 'Saint-damase-de-
matapedia' and state = 'QC';
delete from zip_codes where zip_code = 'G0J 0E6' and city = 'Ste-jeanne-d''arc-de-
matane' and state = 'QC';
delete from zip_codes where zip_code = 'G0K 0B2' and city = 'Saint-gabriel-de-
rimouski' and state = 'QC';
delete from zip_codes where zip_code = 'G0L 0A3' and city = 'Temiscouata-sur-le-
lac' and state = 'QC';
delete from zip_codes where zip_code = 'G0L 0A4' and city = 'Saint-bruno-de-
kamouraska' and state = 'QC';
delete from zip_codes where zip_code = 'G0L 0A7' and city = 'Saint-hubert-riviere-
du-loup' and state = 'QC';
delete from zip_codes where zip_code = 'G0L 0B1' and city = 'Temiscouata-sur-le-
lac' and state = 'QC';
delete from zip_codes where zip_code = 'G0L 0B2' and city = 'Saint-andre-de-
kamouraska' and state = 'QC';
delete from zip_codes where zip_code = 'G0L 0B4' and city = 'Saint-honore-de-
temiscouata' and state = 'QC';
delete from zip_codes where zip_code = 'G0L 0C9' and city = 'Saint-valerien-de-
rimouski' and state = 'QC';
delete from zip_codes where zip_code = 'G0L 0E3' and city = 'Saint-elzear-de-
temiscouata' and state = 'QC';
delete from zip_codes where zip_code = 'G0L 0E8' and city = 'Saint-denis-de-la-
bouteillerie' and state = 'QC';
delete from zip_codes where zip_code = 'G0L 0G9' and city = 'Saint-alexandre-de-
kamouraska' and state = 'QC';
delete from zip_codes where zip_code = 'G0L 0H3' and city = 'Sainte-helene-de-
kamouraska' and state = 'QC';
delete from zip_codes where zip_code = 'G0L 0H6' and city = 'Saint-francois-xavier-
de-viger' and state = 'QC';
delete from zip_codes where zip_code = 'G0M 0A7' and city = 'Saint-prosper-de-
dorchester' and state = 'QC';
delete from zip_codes where zip_code = 'G0M 0B7' and city = 'Saint-evariste-de-
forsyth' and state = 'QC';
delete from zip_codes where zip_code = 'G0M 0B8' and city = 'Saint-honore-de-
shenley' and state = 'QC';
delete from zip_codes where zip_code = 'G0M 0C2' and city = 'Mailing Municipality
Clean Up' and state = 'QC';
delete from zip_codes where zip_code = 'G0N 0A2' and city = 'Saint-joseph-de-
coleraine' and state = 'QC';
delete from zip_codes where zip_code = 'G0N 0B2' and city = 'Sainte-clotilde-de-
beauce' and state = 'QC';
delete from zip_codes where zip_code = 'G0P 0A1' and city = 'Saint-norbert-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G0P 0A4' and city = 'Sainte-sophie-
d''halifax' and state = 'QC';
delete from zip_codes where zip_code = 'G0P 1A1' and city = 'Saints-martyrs-
canadiens' and state = 'QC';
delete from zip_codes where zip_code = 'G0R 0A4' and city = 'Sainte-perpetue-de-
l''islet' and state = 'QC';
delete from zip_codes where zip_code = 'G0R 0B2' and city = 'Sainte-lucie-de-
beauregard' and state = 'QC';
delete from zip_codes where zip_code = 'G0R 0B4' and city = 'Saint-michel-de-
bellechasse' and state = 'QC';
delete from zip_codes where zip_code = 'G0R 0B7' and city = 'Saint-camille-de-
bellechasse' and state = 'QC';
delete from zip_codes where zip_code = 'G0R 0B8' and city = 'Saint-charles-de-
bellechasse' and state = 'QC';
delete from zip_codes where zip_code = 'G0R 0B9' and city = 'Saint-nazaire-de-
dorchester' and state = 'QC';
delete from zip_codes where zip_code = 'G0R 0E3' and city = 'Saint-luc-de-
bellechasse' and state = 'QC';
delete from zip_codes where zip_code = 'G0R 0G2' and city = 'Saint-lazare-de-
bellechasse' and state = 'QC';
delete from zip_codes where zip_code = 'G0R 0G4' and city = 'Sainte-sabine-de-
bellechasse' and state = 'QC';
delete from zip_codes where zip_code = 'G0R 0H1' and city = 'St-francois-de-la-
riviere-du-s' and state = 'QC';
delete from zip_codes where zip_code = 'G0R 0H2' and city = 'St-pierre-de-la-
riviere-du-sud' and state = 'QC';
delete from zip_codes where zip_code = 'G0R 0H3' and city = 'Saint-cyprien-des-
etchemins' and state = 'QC';
delete from zip_codes where zip_code = 'G0R 0H9' and city = 'Saint-damase-des-
aulnaies' and state = 'QC';
delete from zip_codes where zip_code = 'G0R 0J1' and city = 'Saint-just-de-
bretenieres' and state = 'QC';
delete from zip_codes where zip_code = 'G0S 0A5' and city = 'Sainte-francoise-de-
lotbiniere' and state = 'QC';
delete from zip_codes where zip_code = 'G0S 0A6' and city = 'Saint-edouard-de-
lotbiniere' and state = 'QC';
delete from zip_codes where zip_code = 'G0S 0B2' and city = 'Saint-narcisse-de-
beaurivage' and state = 'QC';
delete from zip_codes where zip_code = 'G0S 0B4' and city = 'Saint-patrice-de-
beaurivage' and state = 'QC';
delete from zip_codes where zip_code = 'G0S 0B6' and city = 'Sainte-helene-de-
breakeyville' and state = 'QC';
delete from zip_codes where zip_code = 'G0S 0E2' and city = 'Deschaillons-sur-
saint-laurent' and state = 'QC';
delete from zip_codes where zip_code = 'G0S 0E4' and city = 'Ste-marguerite-de-
dorchester' and state = 'QC';
delete from zip_codes where zip_code = 'G0T 0A7' and city = 'Les Bergeronnes' and
state = 'QC';
delete from zip_codes where zip_code = 'G0V 0A6' and city = 'Saint-honore-de-
chicoutimi' and state = 'QC';
delete from zip_codes where zip_code = 'G0W 0A2' and city = 'Sainte-monique-lac-
saint-jean' and state = 'QC';
delete from zip_codes where zip_code = 'G0W 0B8' and city = 'Saint-bruno-lac-saint-
jean' and state = 'QC';
delete from zip_codes where zip_code = 'G0W 0B9' and city = 'Sainte-hedwidge-de-
roberval' and state = 'QC';
delete from zip_codes where zip_code = 'G0W 0C2' and city = 'Obedjiwan' and state =
'QC';
delete from zip_codes where zip_code = 'G0W 0C3' and city = 'L''ascension-de-notre-
seigneur' and state = 'QC';
delete from zip_codes where zip_code = 'G0W 0C4' and city = 'St-nazaire-du-lac-st-
jean' and state = 'QC';
delete from zip_codes where zip_code = 'G0W 3B0' and city = 'Obedjiwan' and state =
'QC';
delete from zip_codes where zip_code = 'G0X 0A1' and city = 'Saint-boniface-de-
shawinigan' and state = 'QC';
delete from zip_codes where zip_code = 'G0X 0A9' and city = 'Saint-stanislas-de-
champlain' and state = 'QC';
delete from zip_codes where zip_code = 'G0X 0B2' and city = 'Sainte-marie-de-
blandford' and state = 'QC';
delete from zip_codes where zip_code = 'G0X 0C2' and city = 'Trois-rives' and state
= 'QC';
delete from zip_codes where zip_code = 'G0X 0C3' and city = 'Sainte-genevieve-de-
batiscan' and state = 'QC';
delete from zip_codes where zip_code = 'G0X 0E1' and city = 'Saint-adelphe-de-
champlain' and state = 'QC';
delete from zip_codes where zip_code = 'G0X 0E2' and city = 'Saint-elie-de-caxton'
and state = 'QC';
delete from zip_codes where zip_code = 'G0Y 0A3' and city = 'Beaulac-garthby' and
state = 'QC';
delete from zip_codes where zip_code = 'G3A 0A1' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0A2' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0A3' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0A4' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0A5' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0A6' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0A7' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0A8' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0A9' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0B1' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0B2' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0B3' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0B4' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0B5' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0B6' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0B7' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0B8' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0B9' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0C1' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0C2' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0C3' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0C4' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0C5' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0C6' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0C7' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0C8' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0C9' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0E1' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0E2' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0E3' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0E4' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0E5' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0E6' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0E7' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0E8' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0E9' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0G1' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0G2' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0G3' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0G4' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0G5' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0G6' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0G7' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0G8' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0G9' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0H1' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0H2' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0H3' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0H4' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0H5' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0H6' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0H7' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0H8' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0H9' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0J1' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0J2' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0J3' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0J4' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0J5' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0J6' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0J7' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0J8' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0J9' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0K1' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0K2' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0K3' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0K4' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0K5' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0K6' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0K7' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0K8' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0K9' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0L1' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0L2' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0L4' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0L5' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0L6' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0L7' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0L8' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0L9' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0M1' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0M3' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0M4' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0M5' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0M6' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0M7' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0M8' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0M9' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0N1' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0N2' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0N3' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0N4' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0N5' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0N6' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0N7' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 0N8' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 3B7' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 3B8' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3A 3B9' and city = 'Saint-augustin-de-
desmaures' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0H2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0H3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0H4' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0H5' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0H6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0H7' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0H8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0H9' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0J1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0J2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0J3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0J4' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0J6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0L6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0L7' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0L8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0L9' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0M1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0M2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0M3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0N3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0N4' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0N5' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0N6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0N7' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0N8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0N9' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0P1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0P2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0P3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0P4' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0P5' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0P6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0P7' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0P8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0P9' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0R1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0R2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0R3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0R4' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0R5' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0R6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0R7' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0R8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0R9' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0S1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0S2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0S3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0S4' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0S5' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0S6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0S7' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0S8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0S9' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0T1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0T2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0T3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0T4' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0T5' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0T6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0T7' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0T8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0T9' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0V1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0V2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0V4' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0V5' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0V6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0V7' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0V8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0V9' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0W1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0W2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0W3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0W4' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0W5' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0W6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0W7' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0W8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0W9' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0X1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0X2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0X3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0X4' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0X5' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0X6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0X7' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0X8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0X9' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0Y1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0Y2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0Y3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0Y5' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0Y6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0Y7' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0Y8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0Y9' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0Z1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0Z2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0Z3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0Z4' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0Z5' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0Z6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0Z7' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0Z8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 0Z9' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1A1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1A2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1A3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1A4' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1A5' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1A6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1A7' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1A8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1A9' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1B1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1B2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1B3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1B4' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1B5' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1B6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1B7' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1B8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1B9' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1C1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1C2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1C3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1C4' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1C5' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1C6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1C7' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1C8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1C9' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1E1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1E2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1E3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1G4' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1G5' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1G6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1N9' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1P1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1P2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1P3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1P4' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1P5' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1P6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1P7' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1P9' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1R1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1R2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1R3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1R4' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1R5' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1R6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1R7' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1R8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1R9' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1S1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1S2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1S3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1S4' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1S5' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1S6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1S7' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1S8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1S9' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1T1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1T2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1T3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1T4' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1T5' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1T6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1T7' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1T8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1T9' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1V1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1V2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1V3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1V4' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1V5' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1V6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1V7' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1V8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1V9' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1W1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1W2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1Y8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1Y9' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1Z1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1Z2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1Z3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 1Z4' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2E2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2E3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2G3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2G4' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2G5' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2G6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2G7' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2H7' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2H8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2H9' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2J1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2J2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2J3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2J4' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2J5' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2J6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2J7' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2J8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2J9' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2K1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2K2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2K3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2K4' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2K5' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2K6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2K7' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2K8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2K9' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2L1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2L7' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2L8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2L9' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2M1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2M2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2M3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2M4' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2M5' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2M6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2M7' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2M8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2M9' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2N1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2N2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2N3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2N4' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2N5' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2N6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2N7' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2N8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2N9' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2P1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2P2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2P3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2P4' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2P5' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2P6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2P7' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2P8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2R8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2R9' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2S1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2S2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2S3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2S4' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2S5' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2S6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2S7' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2S8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2S9' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2T1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2T2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2T3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2T4' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2T5' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2T6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2T7' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2T8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2T9' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2V1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2V2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2V3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2V4' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2V5' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2V6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2V7' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2V8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2V9' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2W1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2W2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2W3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2W4' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2X1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2X2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2X3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2X4' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2X5' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2X6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2X7' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2X8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2X9' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2Y1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2Y2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2Y3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2Y4' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2Y5' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2Y6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2Y7' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2Y8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2Z2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2Z3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2Z4' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2Z5' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2Z6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2Z7' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2Z8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 2Z9' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 3A1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 3A3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 3A4' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 3A5' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 3A6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 3A7' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 3A8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 3A9' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 3B1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 3B2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 3B3' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 3B4' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 3B5' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 3B6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 3B7' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 3B8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 3C1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 3C2' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 3C5' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 3C6' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 3C8' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 3C9' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G3N 3E1' and city = 'Ste-catherine-de-la-j-
cartier' and state = 'QC';
delete from zip_codes where zip_code = 'G4T 0L7' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 0L9' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 0M2' and city = 'Grande-entree' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 0M3' and city = 'Pointe-aux-loups' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 0M4' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 0M5' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 0M6' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 0M7' and city = 'L''ile-d''entree' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1A1' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1A2' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1A3' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1A4' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1A5' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1A6' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1A7' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1A8' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1A9' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1B1' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1B2' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1B3' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1B4' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1B5' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1B6' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1B7' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1B8' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1B9' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1C1' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1C2' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1C3' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1C4' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1C5' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1C6' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1C7' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1C8' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1C9' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1E1' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1E2' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1E3' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1E4' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1E5' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1E6' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1E7' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1E8' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1E9' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1G1' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1G2' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1G3' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1G4' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1G5' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1G6' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1G7' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1G8' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1G9' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1H1' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1H2' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1H3' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1H4' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1H5' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1H6' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1H7' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1H8' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1H9' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1J1' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1J2' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1J3' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1J4' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1J5' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1J6' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1J7' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1J8' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1J9' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1K1' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1K2' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1K3' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1K4' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1K5' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1K6' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1K7' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1K8' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1K9' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1L1' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1L2' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1L3' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1L4' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1L5' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1L6' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1L7' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1L8' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1L9' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1M1' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1M2' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1M3' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1M4' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1M5' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1M6' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1M7' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1M8' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1M9' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1N1' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1N2' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1N3' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1N4' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1N5' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1N6' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1N7' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1N8' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1N9' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1P1' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1P2' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1P3' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1P4' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1P5' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1P6' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1P7' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1P8' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1P9' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1R1' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1R2' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1R3' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1R4' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1R6' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1R7' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1R8' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1R9' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1S1' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1S2' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1S3' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1S4' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1S5' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1S6' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1S7' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1S8' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1S9' and city = 'Cap-aux-meules' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1Z1' and city = 'L''ile-d''entree' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1Z2' and city = 'L''ile-d''entree' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1Z3' and city = 'L''ile-d''entree' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1Z4' and city = 'L''ile-d''entree' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1Z5' and city = 'L''ile-d''entree' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1Z6' and city = 'L''ile-d''entree' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1Z7' and city = 'L''ile-d''entree' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1Z8' and city = 'L''ile-d''entree' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 1Z9' and city = 'L''ile-d''entree' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3A1' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3A2' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3A3' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3A4' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3A5' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3A6' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3A7' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3A8' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3A9' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3B1' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3B2' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3B3' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3B4' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3B5' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3B6' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3B8' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3B9' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3C1' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3C2' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3C3' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3C4' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3C5' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3C6' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3C7' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3C8' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3C9' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3E1' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3E2' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3E3' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3E4' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3E5' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3E6' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3E7' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3E8' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3E9' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3G1' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3G2' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3G3' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3G4' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3G5' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3G6' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3G7' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3G8' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3G9' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3H1' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3H2' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3H3' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3H4' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3H5' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3H6' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3H7' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3H8' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3H9' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3J1' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3J2' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3J3' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3J4' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3J5' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3J6' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3J7' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3J8' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3J9' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3K1' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3K2' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3K3' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3K4' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3K5' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3K6' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3K7' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3K8' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3K9' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3L1' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3L2' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3L3' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3L4' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3L5' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3L6' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3L7' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3L8' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3L9' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3M1' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3M2' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3M3' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3M4' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3M5' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3M6' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3M7' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3M8' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3M9' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3N1' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3N2' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3N3' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3N4' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3N5' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3N6' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3N7' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3N8' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3N9' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3P1' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3P2' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3P3' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3P4' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3P5' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3P6' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3P7' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3P8' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3P9' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3R1' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3R2' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3R3' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3R4' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3R5' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3R6' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3R7' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3R8' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3R9' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3S1' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3S2' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3S3' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3S4' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3S5' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3S6' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3S7' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3S8' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3S9' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3T1' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3T2' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3T3' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3T4' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3T5' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3T6' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3T7' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3T8' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3T9' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3V1' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3V2' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3V3' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3V4' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3V5' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3V6' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3V7' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3V8' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3V9' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3W1' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3W2' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3W3' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3W4' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3W5' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3W6' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3W7' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3W8' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3W9' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3X1' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3X2' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3X3' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3X4' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3X5' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3X6' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3X7' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3X8' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3X9' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3Y1' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3Y2' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3Y3' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3Y4' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3Y5' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3Y6' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3Y7' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3Y8' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3Y9' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3Z1' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3Z2' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3Z3' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3Z4' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3Z5' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3Z6' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3Z8' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 3Z9' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 4A1' and city = 'L''etang-du-nord' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5A1' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5A2' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5A3' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5A4' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5A5' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5A6' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5A7' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5A8' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5A9' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5B1' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5B2' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5B3' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5B4' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5B5' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5B6' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5B7' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5B8' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5B9' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5C1' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5C2' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5C3' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5C4' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5C5' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5C6' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5C7' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5C8' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5C9' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5E1' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5E2' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5E3' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5E4' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5E5' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5E6' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5E7' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5E8' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5E9' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5G1' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5G2' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5G3' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5G4' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5G5' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5G6' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5G7' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5G8' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5G9' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5H1' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5H2' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5H3' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5H4' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5H5' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5H6' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5H7' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5H8' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5H9' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5J1' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5J2' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5J3' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5J4' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5J5' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5J6' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5J7' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5J8' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5J9' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5K1' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5K2' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5K3' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5K4' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5K5' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5K6' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5K7' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5K8' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5K9' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5L1' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5L2' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5L3' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5L4' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5L5' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5L6' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5L7' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5L8' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5L9' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5M1' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5M2' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5M3' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5M4' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5M5' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5M6' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5M7' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5M8' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5M9' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5N1' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5N2' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5N3' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5N4' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5N5' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5N6' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5N7' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5N8' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5N9' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5P1' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5P2' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5P3' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5P4' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5P5' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5P6' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5P7' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 5P8' and city = 'Havre-aux-maisons' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 7A1' and city = 'Grande-entree' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 7A2' and city = 'Grande-entree' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 7A3' and city = 'Grande-entree' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 7A4' and city = 'Grande-entree' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 7A5' and city = 'Grande-entree' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 7A6' and city = 'Grande-entree' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 7A7' and city = 'Grande-entree' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 7A8' and city = 'Grande-entree' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 7A9' and city = 'Grande-entree' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 7B1' and city = 'Grande-entree' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 7B2' and city = 'Grande-entree' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 7B3' and city = 'Grande-entree' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 7B4' and city = 'Grande-entree' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 7B5' and city = 'Grande-entree' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 7B6' and city = 'Grande-entree' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 7B7' and city = 'Grande-entree' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 7B8' and city = 'Grande-entree' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 7B9' and city = 'Grande-entree' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 7C1' and city = 'Grande-entree' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 7C2' and city = 'Grande-entree' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 7C3' and city = 'Grande-entree' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 7C4' and city = 'Grande-entree' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 7C5' and city = 'Grande-entree' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 7C6' and city = 'Grande-entree' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 7C7' and city = 'Grande-entree' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 8A1' and city = 'Pointe-aux-loups' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 8A2' and city = 'Pointe-aux-loups' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 8A3' and city = 'Pointe-aux-loups' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 8A4' and city = 'Pointe-aux-loups' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 8A5' and city = 'Pointe-aux-loups' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 8A6' and city = 'Pointe-aux-loups' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 8A7' and city = 'Pointe-aux-loups' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 8A8' and city = 'Pointe-aux-loups' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 8A9' and city = 'Pointe-aux-loups' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 8B1' and city = 'Pointe-aux-loups' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 8B2' and city = 'Pointe-aux-loups' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 8B3' and city = 'Pointe-aux-loups' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 8B4' and city = 'Pointe-aux-loups' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9A1' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9A2' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9A3' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9A4' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9A5' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9A6' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9A7' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9A8' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9B1' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9B2' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9B3' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9B4' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9B5' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9B6' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9B7' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9B8' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9B9' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9C1' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9C3' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9C4' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9C5' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9C6' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9C7' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9C8' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9C9' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9E1' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9E2' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9E3' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9E4' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9E5' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9E6' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9E7' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9E8' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9E9' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9G1' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9G2' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9G3' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9G4' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9G5' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9G6' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9G7' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9G8' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9G9' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9H2' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9H3' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9H4' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9H5' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9H6' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9H7' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9H8' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9H9' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9J1' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9J2' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9J3' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9J4' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9J5' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G4T 9L2' and city = 'Havre-aubert' and
state = 'QC';
delete from zip_codes where zip_code = 'G6R 0A1' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0B2' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0B3' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0B4' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0B5' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0B6' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0B7' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0B8' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0B9' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0C1' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0C2' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0C3' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0C6' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0C7' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0C8' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0C9' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0E1' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0E2' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0E3' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0E4' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0E5' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0E6' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0E7' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0E8' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0E9' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0G1' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0G2' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0G3' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0G4' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0G5' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0G6' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0G7' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0G8' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0G9' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0H1' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0H2' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0H4' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0H5' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0H6' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0H7' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0H8' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0H9' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0J1' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0J2' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0J3' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0J4' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0J5' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0J6' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0J7' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0J8' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0J9' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0K1' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0K2' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0K3' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0K4' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0K5' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0K6' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0K7' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0K8' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0K9' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0L1' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0L2' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0L3' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0L4' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0L5' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0L7' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0L8' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0L9' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0M1' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0M2' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0M3' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0M4' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0M5' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0M6' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0M7' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0M8' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0M9' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0N1' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0N2' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0N3' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0N4' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0N5' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0N6' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0N7' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0N8' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0N9' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0P1' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0P2' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0P3' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0P4' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0P5' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0P6' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0P7' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0P8' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0P9' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0R1' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0R2' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0R3' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0R4' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0R5' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0R6' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0R7' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0R8' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0R9' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0S1' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0S2' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0S3' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0S4' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0S5' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0S6' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0S7' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0S8' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0S9' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0T1' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0T2' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0T3' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0T4' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0T5' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0T6' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0T7' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0T8' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0Y1' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0Y2' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0Y3' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0Y4' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0Y5' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0Y6' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0Y7' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0Y8' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0Y9' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0Z1' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0Z2' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 0Z9' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 1A1' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 1P2' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 1P3' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 1P4' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 1P5' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 1P6' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 1P7' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 1P8' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 1P9' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 1R1' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6R 1R2' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0E3' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0E4' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0E5' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0E6' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0E7' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0G1' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0G2' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0G3' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0G4' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0H6' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0H7' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0H8' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0H9' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0J1' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0J2' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0J3' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0J4' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0J5' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0J6' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0J7' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0J8' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0J9' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0K1' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0K2' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0K3' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0K4' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0K5' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0K6' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0K7' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0K8' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0K9' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0L1' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0L2' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0L3' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0L4' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0L5' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0L6' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0L7' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0L8' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0L9' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0M4' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0M5' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0M6' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0M9' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0N1' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0N2' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0N3' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0N5' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0N6' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0N7' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0N8' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0N9' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0P1' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0P3' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0P4' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0P6' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0P7' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0P8' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0P9' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0R2' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0R3' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0R4' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0R5' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G6S 0T4' and city = 'Saint-christophe-
d''arthabaska' and state = 'QC';
delete from zip_codes where zip_code = 'G8G 0A1' and city = 'Metabetchouan-lac-a-
la-croix' and state = 'QC';
delete from zip_codes where zip_code = 'G8G 0A2' and city = 'Metabetchouan-lac-a-
la-croix' and state = 'QC';
delete from zip_codes where zip_code = 'G8G 0A3' and city = 'Metabetchouan-lac-a-
la-croix' and state = 'QC';
delete from zip_codes where zip_code = 'G8G 0A4' and city = 'Metabetchouan-lac-a-
la-croix' and state = 'QC';
delete from zip_codes where zip_code = 'G8G 0A5' and city = 'Metabetchouan-lac-a-
la-croix' and state = 'QC';
delete from zip_codes where zip_code = 'G8G 0A6' and city = 'Metabetchouan-lac-a-
la-croix' and state = 'QC';
delete from zip_codes where zip_code = 'G8G 0A7' and city = 'Metabetchouan-lac-a-
la-croix' and state = 'QC';
delete from zip_codes where zip_code = 'G8G 0A8' and city = 'Metabetchouan-lac-a-
la-croix' and state = 'QC';
delete from zip_codes where zip_code = 'G8G 0A9' and city = 'Metabetchouan-lac-a-
la-croix' and state = 'QC';
delete from zip_codes where zip_code = 'G8G 0B1' and city = 'Metabetchouan-lac-a-
la-croix' and state = 'QC';
delete from zip_codes where zip_code = 'G8G 0B2' and city = 'Metabetchouan-lac-a-
la-croix' and state = 'QC';
delete from zip_codes where zip_code = 'G8H 0B2' and city = 'Sainte-hedwidge-de-
roberval' and state = 'QC';
delete from zip_codes where zip_code = 'G8L 8A1' and city = 'Sainte-elisabeth-de-
proulx' and state = 'QC';
delete from zip_codes where zip_code = 'G8L 8A2' and city = 'Sainte-elisabeth-de-
proulx' and state = 'QC';
delete from zip_codes where zip_code = 'G8L 8A3' and city = 'Sainte-elisabeth-de-
proulx' and state = 'QC';
delete from zip_codes where zip_code = 'G8L 8A4' and city = 'Sainte-elisabeth-de-
proulx' and state = 'QC';
delete from zip_codes where zip_code = 'G8L 8A5' and city = 'Sainte-elisabeth-de-
proulx' and state = 'QC';
delete from zip_codes where zip_code = 'G8L 8A6' and city = 'Sainte-elisabeth-de-
proulx' and state = 'QC';
delete from zip_codes where zip_code = 'G8L 8A7' and city = 'Sainte-elisabeth-de-
proulx' and state = 'QC';
delete from zip_codes where zip_code = 'G8L 8A8' and city = 'Sainte-elisabeth-de-
proulx' and state = 'QC';
delete from zip_codes where zip_code = 'G8L 8A9' and city = 'Sainte-elisabeth-de-
proulx' and state = 'QC';
delete from zip_codes where zip_code = 'G9R 0A1' and city = 'Saint-gerard-des-
laurentides' and state = 'QC';
delete from zip_codes where zip_code = 'G9R 0A2' and city = 'Saint-gerard-des-
laurentides' and state = 'QC';
delete from zip_codes where zip_code = 'G9R 0A3' and city = 'Saint-gerard-des-
laurentides' and state = 'QC';
delete from zip_codes where zip_code = 'J0A 0A8' and city = 'Sainte-clotilde-de-
horton' and state = 'QC';
delete from zip_codes where zip_code = 'J0B 0B7' and city = 'Saint-isidore-de-
clifton' and state = 'QC';
delete from zip_codes where zip_code = 'J0B 0C6' and city = 'Sainte-catherine-de-
hatley' and state = 'QC';
delete from zip_codes where zip_code = 'J0C 0A1' and city = 'Saint-germain-de-
grantham' and state = 'QC';
delete from zip_codes where zip_code = 'J0C 0A6' and city = 'Sainte-brigitte-des-
saults' and state = 'QC';
delete from zip_codes where zip_code = 'J0G 0B3' and city = 'Saint-zephirin-de-
courval' and state = 'QC';
delete from zip_codes where zip_code = 'J0H 0A1' and city = 'Saint-bernard-de-
michaudville' and state = 'QC';
delete from zip_codes where zip_code = 'J0H 0B2' and city = 'Saint-charles-sur-
richelieu' and state = 'QC';
delete from zip_codes where zip_code = 'J0H 0B3' and city = 'Saint-denis-sur-
richelieu' and state = 'QC';
delete from zip_codes where zip_code = 'J0J 0A3' and city = 'Sainte-brigide-
d''iberville' and state = 'QC';
delete from zip_codes where zip_code = 'J0J 0A9' and city = 'Saint-blaise-sur-
richelieu' and state = 'QC';
delete from zip_codes where zip_code = 'J0J 0B2' and city = 'Saint-ignace-de-
stanbridge' and state = 'QC';
delete from zip_codes where zip_code = 'J0J 0C1' and city = 'Saint-alexandre-
d''iberville' and state = 'QC';
delete from zip_codes where zip_code = 'J0K 0A6' and city = 'Saint-alphonse-
rodriguez' and state = 'QC';
delete from zip_codes where zip_code = 'J0K 0B2' and city = 'Sainte-marcelline-de-
kildare' and state = 'QC';
delete from zip_codes where zip_code = 'J0K 0C4' and city = 'Sainte-emelie-de-
l''energie' and state = 'QC';
delete from zip_codes where zip_code = 'J0K 0E3' and city = 'Saint-cleophas-de-
brandon' and state = 'QC';
delete from zip_codes where zip_code = 'J0K 0E4' and city = 'Saint-ambroise-de-
kildare' and state = 'QC';
delete from zip_codes where zip_code = 'J0L 0A2' and city = 'Saint-edouard-de-
napierville' and state = 'QC';
delete from zip_codes where zip_code = 'J0L 0A8' and city = 'Saint-isidore-de-
laprairie' and state = 'QC';
delete from zip_codes where zip_code = 'J0L 0B7' and city = 'Sainte-clotilde-de-
chateauguay' and state = 'QC';
delete from zip_codes where zip_code = 'J0M 0A1' and city = 'Salluit' and state =
'QC';
delete from zip_codes where zip_code = 'J0M 0A2' and city = 'Wemindji' and state =
'QC';
delete from zip_codes where zip_code = 'J0M 0A3' and city = 'Umiujaq' and state =
'QC';
delete from zip_codes where zip_code = 'J0M 0A4' and city = 'Kuujjuaq' and state =
'QC';
delete from zip_codes where zip_code = 'J0M 0A6' and city = 'Kuujjuarapik' and
state = 'QC';
delete from zip_codes where zip_code = 'J0M 1A0' and city = 'Kangirsuk' and state =
'QC';
delete from zip_codes where zip_code = 'J0M 1C0' and city = 'Kuujjuaq' and state =
'QC';
delete from zip_codes where zip_code = 'J0M 1G0' and city = 'Kuujjuarapik' and
state = 'QC';
delete from zip_codes where zip_code = 'J0M 1H0' and city = 'Ivujivik' and state =
'QC';
delete from zip_codes where zip_code = 'J0M 1J0' and city = 'Quaqtaq' and state =
'QC';
delete from zip_codes where zip_code = 'J0M 1K0' and city = 'Kangiqsujuaq' and
state = 'QC';
delete from zip_codes where zip_code = 'J0M 1L0' and city = 'Wemindji' and state =
'QC';
delete from zip_codes where zip_code = 'J0M 1M0' and city = 'Inukjuak' and state =
'QC';
delete from zip_codes where zip_code = 'J0M 1N0' and city = 'Kangiqsualujjuaq' and
state = 'QC';
delete from zip_codes where zip_code = 'J0M 1P0' and city = 'Puvirnituq' and state
= 'QC';
delete from zip_codes where zip_code = 'J0M 1R0' and city = 'Waskaganish' and state
= 'QC';
delete from zip_codes where zip_code = 'J0M 1S0' and city = 'Salluit' and state =
'QC';
delete from zip_codes where zip_code = 'J0M 1T0' and city = 'Tasiujaq' and state =
'QC';
delete from zip_codes where zip_code = 'J0M 1V0' and city = 'Akulivik' and state =
'QC';
delete from zip_codes where zip_code = 'J0M 1W0' and city = 'Eastmain' and state =
'QC';
delete from zip_codes where zip_code = 'J0M 1X0' and city = 'Aupaluk' and state =
'QC';
delete from zip_codes where zip_code = 'J0M 1Y0' and city = 'Umiujaq' and state =
'QC';
delete from zip_codes where zip_code = 'J0S 0A5' and city = 'Saint-stanislas-de-
kostka' and state = 'QC';
delete from zip_codes where zip_code = 'J0T 0A4' and city = 'Sainte-lucie-des-
laurentides' and state = 'QC';
delete from zip_codes where zip_code = 'J0T 0A8' and city = 'Saint-faustin-lac-
carre' and state = 'QC';
delete from zip_codes where zip_code = 'J0T 0B3' and city = 'Ste-marguerite-du-lac-
masson' and state = 'QC';
delete from zip_codes where zip_code = 'J0T 0B4' and city = 'Saint-faustin-lac-
carre' and state = 'QC';
delete from zip_codes where zip_code = 'J0T 0B7' and city = 'Riviere-rouge' and
state = 'QC';
delete from zip_codes where zip_code = 'J0T 0B9' and city = 'Riviere-rouge' and
state = 'QC';
delete from zip_codes where zip_code = 'J0V 0A2' and city = 'Grenville-sur-la-
rouge' and state = 'QC';
delete from zip_codes where zip_code = 'J0V 0B6' and city = 'Grenville-sur-la-
rouge' and state = 'QC';
delete from zip_codes where zip_code = 'J0W 0A5' and city = 'Montcerf-lytton' and
state = 'QC';
delete from zip_codes where zip_code = 'J0X 0C7' and city = 'Ile Du Grand-calumet'
and state = 'QC';
delete from zip_codes where zip_code = 'J0Y 0A1' and city = 'Em-1-a-sarcelle-
rupert' and state = 'QC';
delete from zip_codes where zip_code = 'J0Y 0A2' and city = 'Nemiscau' and state =
'QC';
delete from zip_codes where zip_code = 'J0Y 0A3' and city = 'Saint-dominique-du-
rosaire' and state = 'QC';
delete from zip_codes where zip_code = 'J0Y 0B7' and city = 'Sainte-gertrude-
manneville' and state = 'QC';
delete from zip_codes where zip_code = 'J0Y 3B0' and city = 'Nemiscau' and state =
'QC';
delete from zip_codes where zip_code = 'J0Y 3H0' and city = 'Em-1-a-sarcelle-
rupert' and state = 'QC';
delete from zip_codes where zip_code = 'J3L 0C3' and city = 'Saint-mathias-sur-
richelieu' and state = 'QC';
delete from zip_codes where zip_code = 'J3L 0C8' and city = 'Saint-mathias-sur-
richelieu' and state = 'QC';
delete from zip_codes where zip_code = 'J3L 0H4' and city = 'Saint-mathias-sur-
richelieu' and state = 'QC';
delete from zip_codes where zip_code = 'J3L 0L5' and city = 'Saint-mathias-sur-
richelieu' and state = 'QC';
delete from zip_codes where zip_code = 'J3L 0L6' and city = 'Saint-mathias-sur-
richelieu' and state = 'QC';
delete from zip_codes where zip_code = 'J3L 0X6' and city = 'Saint-mathias-sur-
richelieu' and state = 'QC';
delete from zip_codes where zip_code = 'J3P 0A1' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0A2' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0A3' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0A4' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0A5' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0A6' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0A7' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0A8' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0A9' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0B1' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0B2' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0B3' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0B4' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0B5' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0B6' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0B7' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0B8' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0B9' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0C1' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0C2' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0C3' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0C4' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0C5' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0C6' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0C7' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0C8' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0C9' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0E1' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0E2' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0E3' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0E4' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0E5' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0E6' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0E7' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0E8' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0E9' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0G1' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0G2' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0G3' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0G4' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0G5' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0G6' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0G7' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0G8' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0H1' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0J3' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0J9' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0K1' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0K3' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0K4' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0K7' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0K8' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0K9' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0L1' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0L2' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0L3' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0L4' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0L5' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0L6' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0L7' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0L8' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0L9' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0M1' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0M2' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0M3' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0M4' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0M5' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0M6' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0M7' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0M8' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0M9' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0N1' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0N2' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0N3' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0N4' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0N5' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0N6' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0N8' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0N9' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0P1' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0P2' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0P3' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0P4' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0P5' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0P6' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0P7' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 0P8' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 8E2' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3P 8E3' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0A1' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0A2' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0A3' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0A4' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0A5' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0A6' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0A7' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0A8' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0A9' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0B2' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0B3' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0B4' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0B5' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0B6' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0B7' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0B8' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0B9' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0C1' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0C2' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0C3' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0C4' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0C5' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0C6' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0C7' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0C8' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0C9' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0E1' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0E2' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0E3' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0E4' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0E5' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0E6' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0E7' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0E8' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0E9' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0G1' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0G2' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0G3' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0G4' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0G5' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0G6' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0G7' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0G8' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0G9' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0H1' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0H2' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0H3' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0H4' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0H5' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0H6' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0H7' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0H8' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0H9' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0J1' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0J2' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0J3' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0J4' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0J5' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0J6' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0J7' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0J8' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0J9' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0K1' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0K2' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0K3' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0K4' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0K5' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0K6' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0K7' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0K8' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0K9' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0L1' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0L2' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0L3' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0L4' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0L5' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0L6' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0L7' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0L8' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0L9' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0M1' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0M2' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J3R 0M3' and city = 'Sorel-tracy' and state
= 'QC';
delete from zip_codes where zip_code = 'J6E 0H1' and city = 'Village Saint-pierre'
and state = 'QC';
delete from zip_codes where zip_code = 'J6E 0H2' and city = 'Village Saint-pierre'
and state = 'QC';
delete from zip_codes where zip_code = 'J6E 0H3' and city = 'Village Saint-pierre'
and state = 'QC';
delete from zip_codes where zip_code = 'J6E 0H4' and city = 'Village Saint-pierre'
and state = 'QC';
delete from zip_codes where zip_code = 'J6E 0H6' and city = 'Village Saint-pierre'
and state = 'QC';
delete from zip_codes where zip_code = 'J7V 0J9' and city = 'Notre-dame-de-l''ile-
perrot' and state = 'QC';
delete from zip_codes where zip_code = 'J7V 0N6' and city = 'Notre-dame-de-l''ile-
perrot' and state = 'QC';
delete from zip_codes where zip_code = 'J7V 0S1' and city = 'Notre-dame-de-l''ile-
perrot' and state = 'QC';
delete from zip_codes where zip_code = 'J7V 0S2' and city = 'Notre-dame-de-l''ile-
perrot' and state = 'QC';
delete from zip_codes where zip_code = 'J7V 0S3' and city = 'Notre-dame-de-l''ile-
perrot' and state = 'QC';
delete from zip_codes where zip_code = 'J7V 0S4' and city = 'Notre-dame-de-l''ile-
perrot' and state = 'QC';
delete from zip_codes where zip_code = 'J7V 0S5' and city = 'Notre-dame-de-l''ile-
perrot' and state = 'QC';
delete from zip_codes where zip_code = 'J7V 0S6' and city = 'Notre-dame-de-l''ile-
perrot' and state = 'QC';
delete from zip_codes where zip_code = 'J7V 0S7' and city = 'Notre-dame-de-l''ile-
perrot' and state = 'QC';
delete from zip_codes where zip_code = 'J7V 0S8' and city = 'Notre-dame-de-l''ile-
perrot' and state = 'QC';
delete from zip_codes where zip_code = 'J7V 0S9' and city = 'Notre-dame-de-l''ile-
perrot' and state = 'QC';
delete from zip_codes where zip_code = 'J7V 0T1' and city = 'Notre-dame-de-l''ile-
perrot' and state = 'QC';
delete from zip_codes where zip_code = 'J7V 0T2' and city = 'Notre-dame-de-l''ile-
perrot' and state = 'QC';
delete from zip_codes where zip_code = 'J7V 0T3' and city = 'Notre-dame-de-l''ile-
perrot' and state = 'QC';
delete from zip_codes where zip_code = 'J7V 0T4' and city = 'Notre-dame-de-l''ile-
perrot' and state = 'QC';
delete from zip_codes where zip_code = 'K0M 1J1' and city = 'Algonquin Highlands'
and state = 'ON';
delete from zip_codes where zip_code = 'K6H 0C8' and city = 'South Stormont' and
state = 'ON';
delete from zip_codes where zip_code = 'K6H 7P6' and city = 'South Glengarry' and
state = 'ON';
delete from zip_codes where zip_code = 'K6H 7P7' and city = 'South Glengarry' and
state = 'ON';
delete from zip_codes where zip_code = 'K6H 7P9' and city = 'South Glengarry' and
state = 'ON';
delete from zip_codes where zip_code = 'K6H 7R1' and city = 'South Glengarry' and
state = 'ON';
delete from zip_codes where zip_code = 'K6H 7R2' and city = 'South Glengarry' and
state = 'ON';
delete from zip_codes where zip_code = 'K6H 7R3' and city = 'South Glengarry' and
state = 'ON';
delete from zip_codes where zip_code = 'K6H 7R4' and city = 'South Glengarry' and
state = 'ON';
delete from zip_codes where zip_code = 'K6H 7R5' and city = 'South Glengarry' and
state = 'ON';
delete from zip_codes where zip_code = 'K6H 7R6' and city = 'South Glengarry' and
state = 'ON';
delete from zip_codes where zip_code = 'K6H 7R7' and city = 'South Glengarry' and
state = 'ON';
delete from zip_codes where zip_code = 'K6H 7R8' and city = 'South Glengarry' and
state = 'ON';
delete from zip_codes where zip_code = 'K6H 7R9' and city = 'South Glengarry' and
state = 'ON';
delete from zip_codes where zip_code = 'K6H 7S4' and city = 'South Glengarry' and
state = 'ON';
delete from zip_codes where zip_code = 'K6H 7S5' and city = 'South Glengarry' and
state = 'ON';
delete from zip_codes where zip_code = 'K6H 7S6' and city = 'South Glengarry' and
state = 'ON';
delete from zip_codes where zip_code = 'K6H 7S7' and city = 'South Glengarry' and
state = 'ON';
delete from zip_codes where zip_code = 'K6H 7S9' and city = 'South Glengarry' and
state = 'ON';
delete from zip_codes where zip_code = 'K6H 7T1' and city = 'South Stormont' and
state = 'ON';
delete from zip_codes where zip_code = 'K6H 7T3' and city = 'South Stormont' and
state = 'ON';
delete from zip_codes where zip_code = 'K6H 7T5' and city = 'South Stormont' and
state = 'ON';
delete from zip_codes where zip_code = 'K6H 7T6' and city = 'South Glengarry' and
state = 'ON';
delete from zip_codes where zip_code = 'K6H 7T7' and city = 'South Stormont' and
state = 'ON';
delete from zip_codes where zip_code = 'K6H 7T9' and city = 'South Stormont' and
state = 'ON';
delete from zip_codes where zip_code = 'K6H 7V1' and city = 'South Glengarry' and
state = 'ON';
delete from zip_codes where zip_code = 'K6H 7V2' and city = 'South Glengarry' and
state = 'ON';
delete from zip_codes where zip_code = 'K6H 7V3' and city = 'South Stormont' and
state = 'ON';
delete from zip_codes where zip_code = 'K6H 7V4' and city = 'South Stormont' and
state = 'ON';
delete from zip_codes where zip_code = 'K6H 7V5' and city = 'South Glengarry' and
state = 'ON';
delete from zip_codes where zip_code = 'K6K 0A6' and city = 'South Stormont' and
state = 'ON';
delete from zip_codes where zip_code = 'K6K 0A7' and city = 'South Glengarry' and
state = 'ON';
delete from zip_codes where zip_code = 'K6K 0B1' and city = 'South Stormont' and
state = 'ON';
delete from zip_codes where zip_code = 'K7V 0A5' and city = 'Horton' and state =
'ON';
delete from zip_codes where zip_code = 'K7V 0A6' and city = 'Horton' and state =
'ON';
delete from zip_codes where zip_code = 'K9J 0E5' and city = 'Cavan Monaghan' and
state = 'ON';
delete from zip_codes where zip_code = 'K9J 0E7' and city = 'Cavan Monaghan' and
state = 'ON';
delete from zip_codes where zip_code = 'K9J 0G5' and city = 'Cavan Monaghan' and
state = 'ON';
delete from zip_codes where zip_code = 'K9L 0C6' and city = 'Otonabee' and state =
'ON';
delete from zip_codes where zip_code = 'K9L 0C7' and city = 'Otonabee' and state =
'ON';
delete from zip_codes where zip_code = 'L0K 2E1' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L0L 0B2' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L0L 1P1' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L4R 0E3' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0B1' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0B2' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0B3' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0B4' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0B5' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0B6' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0B7' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0B8' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0B9' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0C1' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0C2' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0C3' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0C4' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0C6' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0C8' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0C9' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0E1' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0E2' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0E3' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0E4' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0E5' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0E6' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0E7' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0E8' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0E9' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0G1' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0G2' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0G3' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0G4' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0G5' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0G6' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0G7' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0G8' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0H1' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0H2' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0H3' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0H4' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0H5' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0H6' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0H7' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0H8' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0H9' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0J1' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0J2' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0J3' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0J4' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0J5' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0J6' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0J7' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0J8' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0J9' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0K1' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0K2' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0K3' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0K4' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0K5' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0K6' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0K7' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0K8' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0K9' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0L1' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0L2' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0L3' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0L4' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0L5' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0L6' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0L7' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0L9' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0M1' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0M2' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0M3' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0M4' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0M5' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0M6' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0M7' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0M8' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0M9' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0N1' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0N2' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0N3' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0N4' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0N5' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0N6' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0N7' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0N8' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0N9' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0P1' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0P2' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0P3' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0P4' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0P5' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0P6' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0P7' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0P8' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0P9' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0R1' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0R2' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0R3' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0R4' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0R5' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0R6' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0R7' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0R8' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0R9' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0S1' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0S2' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0S3' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0S4' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0S5' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0S6' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0S7' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0S8' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0S9' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0T1' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0T2' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0T3' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0T4' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0T5' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0T6' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0T7' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0T8' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9M 0V4' and city = 'Tiny' and state =
'ON';
delete from zip_codes where zip_code = 'L9W 6A3' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 6B2' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 6B3' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 6B4' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 6B5' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 6B6' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 6B7' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 6B8' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 6Y3' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 6Y4' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 6Y5' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 6Y7' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 6Y8' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 6Y9' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 6Z2' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 6Z3' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 6Z8' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 6Z9' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7A1' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7A2' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7A3' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7A4' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7A5' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7A6' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7A7' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7A8' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7A9' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7B1' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7B2' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7B3' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7B4' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7B5' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7B6' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7B7' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7B8' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7B9' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7C1' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7C2' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7C3' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7C4' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7C5' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7C6' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7C7' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7C8' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7C9' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7E1' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7E2' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7E3' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7E4' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7E5' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7E6' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7E7' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7E8' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7E9' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7G2' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7G3' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7G4' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7G5' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7G6' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7G7' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7G8' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7G9' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7H1' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7H2' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7H3' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7H4' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7H5' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7H6' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7H7' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7H8' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7H9' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7J1' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7J2' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7J3' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7J4' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7J5' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7J6' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7J7' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7J8' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7J9' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7K1' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7K2' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7K3' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7K4' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7K5' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7K6' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7K7' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7K8' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7K9' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7L1' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7L2' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7L3' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7L4' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7L5' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7L6' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7L7' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7L8' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7L9' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7M1' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7M2' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7M3' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7M4' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7M5' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7M6' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7M7' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7M8' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7M9' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7N1' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9W 7N2' and city = 'East Garafraxa' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0B5' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0B6' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0B7' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0B8' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0K3' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0K4' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0K5' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0K6' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0K7' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0K8' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0K9' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0L1' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0L2' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0L3' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0L4' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0L5' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0L6' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0L7' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0L8' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0L9' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0M1' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0M2' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0M3' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0M4' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0M5' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0M6' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0M7' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0M8' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0M9' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0N1' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0N2' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0N3' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0N4' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0N5' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0N6' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0N7' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0N8' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0N9' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0P1' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0P2' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0P3' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0P4' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0P5' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0P6' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0P7' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0P8' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0P9' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0R1' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0R2' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0R3' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0R4' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0R5' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0R6' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0R8' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0R9' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0S1' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0S2' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0S3' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0S4' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0S5' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0S6' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0S7' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0S8' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0S9' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0T1' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0T2' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0T3' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0T4' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0T5' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0T6' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0T7' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0T8' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0V1' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0V2' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0V3' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0V4' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0V5' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0V6' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0V7' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0V8' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0V9' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'L9Y 0W3' and city = 'Blue Mountains' and
state = 'ON';
delete from zip_codes where zip_code = 'N0B 2H1' and city = 'Township Of Wilmot'
and state = 'ON';
delete from zip_codes where zip_code = 'N0N 1J1' and city = 'Kettle And Stony Point
Fn' and state = 'ON';
delete from zip_codes where zip_code = 'N0N 1J2' and city = 'Lambton Shores' and
state = 'ON';
delete from zip_codes where zip_code = 'N0N 1J3' and city = 'Lambton Shores' and
state = 'ON';
delete from zip_codes where zip_code = 'N0N 1J3' and city = 'Warwick Township' and
state = 'ON';
delete from zip_codes where zip_code = 'N0N 1J4' and city = 'Lambton Shores' and
state = 'ON';
delete from zip_codes where zip_code = 'N0N 1J4' and city = 'Town Of Plympton
Wyoming' and state = 'ON';
delete from zip_codes where zip_code = 'N0N 1J4' and city = 'Warwick Township' and
state = 'ON';
delete from zip_codes where zip_code = 'N0N 1J5' and city = 'Lambton Shores' and
state = 'ON';
delete from zip_codes where zip_code = 'N0N 1J5' and city = 'Town Of Plympton
Wyoming' and state = 'ON';
delete from zip_codes where zip_code = 'N0N 1J6' and city = 'Lambton Shores' and
state = 'ON';
delete from zip_codes where zip_code = 'N0N 1J6' and city = 'Town Of Plympton
Wyoming' and state = 'ON';
delete from zip_codes where zip_code = 'N0N 1J7' and city = 'Lambton Shores' and
state = 'ON';
delete from zip_codes where zip_code = 'P0L 0A2' and city = 'Moose Factory' and
state = 'ON';
delete from zip_codes where zip_code = 'P0L 0A7' and city = 'Attawapiskat' and
state = 'ON';
delete from zip_codes where zip_code = 'P0L 0B2' and city = 'Fort Albany' and state
= 'ON';
delete from zip_codes where zip_code = 'P0L 1A0' and city = 'Attawapiskat' and
state = 'ON';
delete from zip_codes where zip_code = 'P0L 1H0' and city = 'Fort Albany' and state
= 'ON';
delete from zip_codes where zip_code = 'P0L 1S0' and city = 'Kashechewan' and state
= 'ON';
delete from zip_codes where zip_code = 'P0L 1W0' and city = 'Moose Factory' and
state = 'ON';
delete from zip_codes where zip_code = 'P0L 1Y0' and city = 'Moosonee' and state =
'ON';
delete from zip_codes where zip_code = 'P0M 2N1' and city = 'Dokis First Nation'
and state = 'ON';
delete from zip_codes where zip_code = 'P0P 0A2' and city = 'M''chigeeng' and state
= 'ON';
delete from zip_codes where zip_code = 'P0T 0A1' and city = 'Summer Beaver' and
state = 'ON';
delete from zip_codes where zip_code = 'P0T 0B1' and city = 'Eabamet Lake' and
state = 'ON';
delete from zip_codes where zip_code = 'P0T 0B2' and city = 'Lansdowne House' and
state = 'ON';
delete from zip_codes where zip_code = 'P0T 1C1' and city = 'Lac La Croix First
Nation' and state = 'ON';
delete from zip_codes where zip_code = 'P0T 1L0' and city = 'Eabamet Lake' and
state = 'ON';
delete from zip_codes where zip_code = 'P0T 1Z0' and city = 'Lansdowne House' and
state = 'ON';
delete from zip_codes where zip_code = 'P0T 2L0' and city = 'Ogoki' and state =
'ON';
delete from zip_codes where zip_code = 'P0T 3A0' and city = 'Webequie' and state =
'ON';
delete from zip_codes where zip_code = 'P0T 3B0' and city = 'Summer Beaver' and
state = 'ON';
delete from zip_codes where zip_code = 'P0V 0A1' and city = 'Kasabonika' and state
= 'ON';
delete from zip_codes where zip_code = 'P0V 0A3' and city = 'Weagamow Lake' and
state = 'ON';
delete from zip_codes where zip_code = 'P0V 0A7' and city = 'Sandy Lake' and state
= 'ON';
delete from zip_codes where zip_code = 'P0V 0B4' and city = 'Muskrat Dam' and state
= 'ON';
delete from zip_codes where zip_code = 'P0V 1B0' and city = 'Angling Lake' and
state = 'ON';
delete from zip_codes where zip_code = 'P0V 1E0' and city = 'Bearskin Lake' and
state = 'ON';
delete from zip_codes where zip_code = 'P0V 1G0' and city = 'Big Trout Lake' and
state = 'ON';
delete from zip_codes where zip_code = 'P0V 1J0' and city = 'Cat Lake' and state =
'ON';
delete from zip_codes where zip_code = 'P0V 1V0' and city = 'Sandy Lake' and state
= 'ON';
delete from zip_codes where zip_code = 'P0V 1W0' and city = 'Fort Severn' and state
= 'ON';
delete from zip_codes where zip_code = 'P0V 1Y0' and city = 'Kasabonika' and state
= 'ON';
delete from zip_codes where zip_code = 'P0V 1Z0' and city = 'Kingfisher Lake' and
state = 'ON';
delete from zip_codes where zip_code = 'P0V 2G0' and city = 'North Spirit Lake' and
state = 'ON';
delete from zip_codes where zip_code = 'P0V 2P0' and city = 'Sachigo Lake' and
state = 'ON';
delete from zip_codes where zip_code = 'P0V 2Y0' and city = 'Weagamow Lake' and
state = 'ON';
delete from zip_codes where zip_code = 'P0V 2Z0' and city = 'Wunnumin Lake' and
state = 'ON';
delete from zip_codes where zip_code = 'P0V 3B0' and city = 'Muskrat Dam' and state
= 'ON';
delete from zip_codes where zip_code = 'P2A 0B7' and city = 'The Archipelago' and
state = 'ON';
delete from zip_codes where zip_code = 'P6A 0B8' and city = 'Batchewana First
Nation' and state = 'ON';
delete from zip_codes where zip_code = 'P6A 0C4' and city = 'Batchewana First
Nation' and state = 'ON';
delete from zip_codes where zip_code = 'P6A 0C5' and city = 'Batchewana First
Nation' and state = 'ON';
delete from zip_codes where zip_code = 'P6A 0C6' and city = 'Batchewana First
Nation' and state = 'ON';
delete from zip_codes where zip_code = 'P6A 0E2' and city = 'Batchewana First
Nation' and state = 'ON';
delete from zip_codes where zip_code = 'P6A 0E4' and city = 'Aweres Twp' and state
= 'ON';
delete from zip_codes where zip_code = 'P7A 0A1' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0A6' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0A7' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0A8' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0A9' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0B1' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0B2' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0B3' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0B4' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0B5' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0B6' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0B7' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0B8' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0B9' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0C1' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0C2' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0C3' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0C4' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0C5' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0C6' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0C7' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0C8' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0C9' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0E1' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0E2' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0E3' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0E4' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0E5' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0E6' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0E9' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0G1' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0G2' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0G3' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0G4' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0G5' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0G6' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0G7' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0G8' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0G9' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0H1' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0H2' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0H3' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0H4' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0H5' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0H6' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0H7' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0H8' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0H9' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0J1' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0J2' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0J3' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0J4' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0J5' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0J6' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0J7' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0J8' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0J9' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0K1' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0K2' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0K3' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0K4' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0K5' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0K6' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0K7' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0K8' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0K9' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0L1' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0L2' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0L3' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0L4' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0L5' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0L6' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0L7' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0L8' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0L9' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0M1' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0M2' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0M3' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0M4' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0M5' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0M6' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0M7' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0M8' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0M9' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0N1' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0N2' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0N3' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0N4' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0N5' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0N6' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0N7' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0N8' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0N9' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0P1' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0P2' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0P3' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0P4' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0P5' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0P6' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0P7' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0P8' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0P9' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0R1' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0R2' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0R3' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0R4' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0R5' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0R6' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0R7' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0R8' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0R9' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0S1' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0S2' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0S3' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0S4' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0S5' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0S6' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0S7' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0S8' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0S9' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0T1' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0T2' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0T3' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0T4' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0T5' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0T6' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0T7' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0T8' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0T9' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0V1' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0V2' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0V3' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0V4' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0V5' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0V6' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0V7' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0V8' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0V9' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0W1' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0W2' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0W3' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0W4' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0W5' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0W6' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0W7' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0W8' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0W9' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0X1' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0X2' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0X3' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0X4' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0X5' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0X6' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0X7' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0X8' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0X9' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0Y1' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0Y3' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0Y4' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0Y5' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0Y6' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0Y7' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0Y8' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0Y9' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0Z1' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0Z2' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0Z3' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0Z4' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0Z5' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0Z6' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0Z7' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0Z8' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 0Z9' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7A 1B4' and city = 'Shuniah' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0B1' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0B2' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0B3' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0B4' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0B5' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0B6' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0B7' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0B8' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0B9' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0C1' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0C2' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0C3' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0C5' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0C6' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0C7' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0C8' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0C9' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0E1' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0E2' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0E3' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0E7' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0E8' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0E9' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0G1' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0G3' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0G4' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0G5' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0G6' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0G8' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0G9' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0H1' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0H2' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0H3' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0H4' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0H5' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0H6' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0H7' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0H8' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0H9' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0J1' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0J2' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0J3' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0J4' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0J5' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0J6' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0J7' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0J8' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0J9' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0K1' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0K2' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0K3' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0K4' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0K5' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0K6' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0K7' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0K8' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0K9' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0L1' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0L2' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0L3' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0L4' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0L5' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0L6' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0L7' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0L8' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0L9' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0M1' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0M2' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0M3' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0M4' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0M5' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0M6' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0M7' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0M8' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0M9' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0N1' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0N2' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0N3' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0N4' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0N5' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0N6' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0N7' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0N8' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0N9' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0P1' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0P2' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0P3' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0P4' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0P5' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0P6' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0P7' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0P8' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0P9' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0R1' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0R2' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0R3' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0R4' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0R5' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0R6' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0R7' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0R8' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0R9' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0S1' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0S2' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0S3' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0S3' and city = 'Jacques' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0S4' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0S5' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0S6' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0S7' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0S8' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0S9' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0T1' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0W6' and city = 'Jacques' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0W7' and city = 'Jacques' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0X8' and city = 'Jacques' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0X9' and city = 'Jacques' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0Y1' and city = 'Jacques' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0Y2' and city = 'Jacques' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0Y3' and city = 'Jacques' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0Y4' and city = 'Jacques' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0Y5' and city = 'Jacques' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0Y6' and city = 'Jacques' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0Y7' and city = 'Jacques' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0Y8' and city = 'Jacques' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0Y9' and city = 'Jacques' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0Z1' and city = 'Jacques' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0Z2' and city = 'Jacques' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0Z3' and city = 'Jacques' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0Z5' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0Z8' and city = 'Jacques' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 0Z9' and city = 'Jacques' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 1E6' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 2K7' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 2K8' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 2K9' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 2L1' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 2L2' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 2L3' and city = 'Gorham' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 2L6' and city = 'Jacques' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 2L7' and city = 'Jacques' and state =
'ON';
delete from zip_codes where zip_code = 'P7G 2L8' and city = 'Jacques' and state =
'ON';
delete from zip_codes where zip_code = 'P7J 0K5' and city = 'Fort William First
Nation' and state = 'ON';
delete from zip_codes where zip_code = 'R0B 0A0' and city = 'Berens River' and
state = 'MB';
delete from zip_codes where zip_code = 'R0B 0A1' and city = 'Stevenson Island' and
state = 'MB';
delete from zip_codes where zip_code = 'R0B 0A2' and city = 'Gods River' and state
= 'MB';
delete from zip_codes where zip_code = 'R0B 0A4' and city = 'Berens River' and
state = 'MB';
delete from zip_codes where zip_code = 'R0B 0A9' and city = 'Sherridon' and state =
'MB';
delete from zip_codes where zip_code = 'R0B 0B0' and city = 'Brochet' and state =
'MB';
delete from zip_codes where zip_code = 'R0B 0B2' and city = 'St Theresa Point' and
state = 'MB';
delete from zip_codes where zip_code = 'R0B 0B5' and city = 'Little Grand Rapids'
and state = 'MB';
delete from zip_codes where zip_code = 'R0B 0B6' and city = 'Churchill' and state =
'MB';
delete from zip_codes where zip_code = 'R0B 0B8' and city = 'Gillam' and state =
'MB';
delete from zip_codes where zip_code = 'R0B 0B9' and city = 'Gods Lake Narrows' and
state = 'MB';
delete from zip_codes where zip_code = 'R0B 0E0' and city = 'Churchill' and state =
'MB';
delete from zip_codes where zip_code = 'R0B 0L0' and city = 'Gillam' and state =
'MB';
delete from zip_codes where zip_code = 'R0B 0M0' and city = 'Gods Lake Narrows' and
state = 'MB';
delete from zip_codes where zip_code = 'R0B 0N0' and city = 'Gods River' and state
= 'MB';
delete from zip_codes where zip_code = 'R0B 0S0' and city = 'Ilford' and state =
'MB';
delete from zip_codes where zip_code = 'R0B 0V0' and city = 'Little Grand Rapids'
and state = 'MB';
delete from zip_codes where zip_code = 'R0B 0Z0' and city = 'Negginan' and state =
'MB';
delete from zip_codes where zip_code = 'R0B 1C0' and city = 'Oxford House' and
state = 'MB';
delete from zip_codes where zip_code = 'R0B 1E0' and city = 'Pikwitonei' and state
= 'MB';
delete from zip_codes where zip_code = 'R0B 1G0' and city = 'Pukatawagan' and state
= 'MB';
delete from zip_codes where zip_code = 'R0B 1H0' and city = 'Red Sucker Lake' and
state = 'MB';
delete from zip_codes where zip_code = 'R0B 1J0' and city = 'St Theresa Point' and
state = 'MB';
delete from zip_codes where zip_code = 'R0B 1K0' and city = 'Shamattawa' and state
= 'MB';
delete from zip_codes where zip_code = 'R0B 1L0' and city = 'Sherridon' and state =
'MB';
delete from zip_codes where zip_code = 'R0B 1P0' and city = 'Split Lake' and state
= 'MB';
delete from zip_codes where zip_code = 'R0B 1R0' and city = 'Thicket Portage' and
state = 'MB';
delete from zip_codes where zip_code = 'R0B 1Z0' and city = 'Wasagamack' and state
= 'MB';
delete from zip_codes where zip_code = 'R0B 2B0' and city = 'York Landing' and
state = 'MB';
delete from zip_codes where zip_code = 'R0B 2C0' and city = 'Tadoule Lake' and
state = 'MB';
delete from zip_codes where zip_code = 'R0B 2E0' and city = 'Lac Brochet' and state
= 'MB';
delete from zip_codes where zip_code = 'R0B 2G0' and city = 'Pauingassi' and state
= 'MB';
delete from zip_codes where zip_code = 'R0B 2H0' and city = 'Stevenson Island' and
state = 'MB';
delete from zip_codes where zip_code = 'R0C 3K0' and city = 'Lake Manitoba First
Nation' and state = 'MB';
delete from zip_codes where zip_code = 'R0L 2L0' and city = 'Tootinaowaziibeeng'
and state = 'MB';
delete from zip_codes where zip_code = 'R2V 4Z3' and city = 'West St Paul' and
state = 'MB';
delete from zip_codes where zip_code = 'R4A 0A1' and city = 'West St Paul' and
state = 'MB';
delete from zip_codes where zip_code = 'R4A 0A2' and city = 'West St Paul' and
state = 'MB';
delete from zip_codes where zip_code = 'R4A 0A3' and city = 'West St Paul' and
state = 'MB';
delete from zip_codes where zip_code = 'R4A 0A4' and city = 'West St Paul' and
state = 'MB';
delete from zip_codes where zip_code = 'R4A 0A5' and city = 'West St Paul' and
state = 'MB';
delete from zip_codes where zip_code = 'R4A 0A6' and city = 'West St Paul' and
state = 'MB';
delete from zip_codes where zip_code = 'R4A 0A7' and city = 'West St Paul' and
state = 'MB';
delete from zip_codes where zip_code = 'R4A 0A8' and city = 'West St Paul' and
state = 'MB';
delete from zip_codes where zip_code = 'R4A 0A9' and city = 'West St Paul' and
state = 'MB';
delete from zip_codes where zip_code = 'R4A 0B1' and city = 'West St Paul' and
state = 'MB';
delete from zip_codes where zip_code = 'R4A 0B2' and city = 'West St Paul' and
state = 'MB';
delete from zip_codes where zip_code = 'R4A 0B3' and city = 'West St Paul' and
state = 'MB';
delete from zip_codes where zip_code = 'R4A 0B4' and city = 'West St Paul' and
state = 'MB';
delete from zip_codes where zip_code = 'R4A 1C5' and city = 'West St Paul' and
state = 'MB';
delete from zip_codes where zip_code = 'R4A 1C6' and city = 'West St Paul' and
state = 'MB';
delete from zip_codes where zip_code = 'S0A 0L1' and city = 'Good Spirit Acres' and
state = 'SK';
delete from zip_codes where zip_code = 'S0J 0B9' and city = 'Uranium City' and
state = 'SK';
delete from zip_codes where zip_code = 'S0J 0C2' and city = 'Fond Du Lac' and state
= 'SK';
delete from zip_codes where zip_code = 'S0J 0C9' and city = 'Pinehouse Lake' and
state = 'SK';
delete from zip_codes where zip_code = 'S0J 0W0' and city = 'Fond Du Lac' and state
= 'SK';
delete from zip_codes where zip_code = 'S0J 2W0' and city = 'Uranium City' and
state = 'SK';
delete from zip_codes where zip_code = 'S0J 3C0' and city = 'Wollaston Lake' and
state = 'SK';
delete from zip_codes where zip_code = 'S0K 0E3' and city = 'St Isidore De
Bellevue' and state = 'SK';
delete from zip_codes where zip_code = 'S0M 0C5' and city = 'Dillon' and state =
'SK';
delete from zip_codes where zip_code = 'S0M 0G3' and city = 'Island Lake' and state
= 'SK';
delete from zip_codes where zip_code = 'S0P 0G0' and city = 'Sandy Bay' and state =
'SK';
delete from zip_codes where zip_code = 'S4L 0B8' and city = 'Emerald Park' and
state = 'SK';
delete from zip_codes where zip_code = 'S4L 1C9' and city = 'Emerald Park' and
state = 'SK';
delete from zip_codes where zip_code = 'S7K 2L6' and city = 'Eagle Ridge' and state
= 'SK';
delete from zip_codes where zip_code = 'S7R 0H4' and city = 'Corman Park' and state
= 'SK';
delete from zip_codes where zip_code = 'S7R 0H5' and city = 'Corman Park' and state
= 'SK';
delete from zip_codes where zip_code = 'S7T 0K1' and city = 'Corman Park' and state
= 'SK';
delete from zip_codes where zip_code = 'S7T 1E3' and city = 'Corman Park' and state
= 'SK';
delete from zip_codes where zip_code = 'S7V 0H8' and city = 'Corman Park' and state
= 'SK';
delete from zip_codes where zip_code = 'T0A 0K1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T0A 0K2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T0A 0K3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T0A 0K4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T0A 0K5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T0A 1C0' and city = 'Kehewin' and state =
'AB';
delete from zip_codes where zip_code = 'T0A 1N1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T0A 1N2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T0A 1N3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T0A 1N4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T0A 1N5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T0A 1N6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T0B 3M1' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T0B 3M2' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T0B 3M3' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T0B 3M4' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T0C 0A3' and city = 'Maskwacis' and state =
'AB';
delete from zip_codes where zip_code = 'T0C 0A5' and city = 'Mulhurst Bay' and
state = 'AB';
delete from zip_codes where zip_code = 'T0G 1L1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T0G 1L2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T0H 0B9' and city = 'Fox Lake' and state =
'AB';
delete from zip_codes where zip_code = 'T0H 1R0' and city = 'Fox Lake' and state =
'AB';
delete from zip_codes where zip_code = 'T0P 0A1' and city = 'Fort Chipewyan' and
state = 'AB';
delete from zip_codes where zip_code = 'T0P 1B0' and city = 'Fort Chipewyan' and
state = 'AB';
delete from zip_codes where zip_code = 'T0P 1G0' and city = 'Chard' and state =
'AB';
delete from zip_codes where zip_code = 'T0P 1H0' and city = 'Conklin' and state =
'AB';
delete from zip_codes where zip_code = 'T0P 1H1' and city = 'Conklin' and state =
'AB';
delete from zip_codes where zip_code = 'T1B 0A4' and city = 'Desert Blume' and
state = 'AB';
delete from zip_codes where zip_code = 'T1B 0H5' and city = 'Desert Blume' and
state = 'AB';
delete from zip_codes where zip_code = 'T1B 0H6' and city = 'Desert Blume' and
state = 'AB';
delete from zip_codes where zip_code = 'T1B 0H7' and city = 'Cypress County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1B 0H8' and city = 'Cypress County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1B 0H9' and city = 'Cypress County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1B 0J1' and city = 'Cypress County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1B 0J2' and city = 'Cypress County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1B 0K6' and city = 'Cypress County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1B 0K7' and city = 'Cypress County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1B 0K8' and city = 'Cypress County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1B 0L1' and city = 'Cypress County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1B 0L3' and city = 'Cypress County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1B 0M6' and city = 'Desert Blume' and
state = 'AB';
delete from zip_codes where zip_code = 'T1R 0X5' and city = 'Lake Newell Resort'
and state = 'AB';
delete from zip_codes where zip_code = 'T1R 0X6' and city = 'Lake Newell Resort'
and state = 'AB';
delete from zip_codes where zip_code = 'T1R 0X7' and city = 'Lake Newell Resort'
and state = 'AB';
delete from zip_codes where zip_code = 'T1X 0G8' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1X 0G9' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1X 0H1' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1X 0H2' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1X 0H3' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1X 0H4' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1X 0H5' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1X 0H6' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1X 0H8' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1X 0H9' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1X 0J1' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1X 0J2' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1X 0J3' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1X 0J4' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1X 0J5' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1X 0J6' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1X 0J7' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1X 0J8' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1X 0J9' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1X 0K1' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1X 0K2' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1X 0K3' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1X 0K4' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1X 0K6' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1X 0K7' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1X 0L7' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1X 0N2' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1X 0P3' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1X 0P5' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1X 0R4' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1Z 0A1' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1Z 0A2' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1Z 0A3' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1Z 0A4' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1Z 0A5' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1Z 0A6' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1Z 0A7' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T1Z 0A8' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4A 0E3' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4A 0G3' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4A 0G4' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4A 0J6' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4A 0N1' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4A 0N2' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4A 0N3' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4A 0N4' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4A 0N5' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4A 0N6' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4A 0N8' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4A 0N9' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4A 0P1' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4A 0P2' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4A 0P3' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4A 0P4' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4A 0P5' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4A 0P6' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4A 0P9' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4A 0S3' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4A 0T5' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4A 0T8' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4A 0T9' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4B 3L5' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4B 3P4' and city = 'Rocky View County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4L 0E3' and city = 'Lacombe County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4V 5H8' and city = 'Camrose County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4V 5H9' and city = 'Camrose County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0J4' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0J5' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0J6' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0J7' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0J8' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0J9' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0K1' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0K2' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0K3' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0K4' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0K6' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0K7' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0K8' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0K9' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0L1' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0L2' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0L3' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0L4' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0L5' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0L6' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0L7' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0L8' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0L9' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0M1' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0M2' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0M3' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0M4' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0M5' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0M6' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0M7' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0M8' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0M9' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0N1' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0N2' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0N3' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0N4' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0N5' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0N6' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0N7' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0N8' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0N9' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0P1' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0P2' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0P3' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0P4' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0P5' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0P6' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0P7' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0P8' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0P9' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0R1' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0R2' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0R3' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0R4' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0R5' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0R6' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0R7' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0R8' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0R9' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0S1' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0S2' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0S3' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0S4' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0S5' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0S7' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0S8' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0S9' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0T1' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0T2' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0T3' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0T4' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0T5' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0T6' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0T7' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0T8' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0T9' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0V2' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0V3' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0V4' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0V5' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0V6' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0V7' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0V8' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0V9' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0W1' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0W2' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0W8' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0W9' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0X4' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0X5' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0X6' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0X9' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0Y2' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0Y3' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0Y4' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0Y5' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0Y6' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0Y7' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0Y8' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0Y9' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0Z1' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0Z2' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0Z3' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0Z4' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0Z5' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0Z6' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0Z7' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0Z8' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 0Z9' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 1W8' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 1W9' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 1X1' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 1X2' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 1X3' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 1X4' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 1X5' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 1X6' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 1X7' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 1X8' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 1X9' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 1Y1' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 1Y2' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 1Y3' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T4X 1Y4' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7A 0C1' and city = 'Brazeau County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3A1' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3A2' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3A3' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3A4' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3A5' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3A6' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3A7' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3A8' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3A9' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3B1' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3B2' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3B3' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3B4' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3B5' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3B6' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3B7' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3B8' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3B9' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3C1' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3C2' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3C3' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3C4' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3C5' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3C6' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3C7' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3C8' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3C9' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3E1' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3E2' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3E3' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3E4' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3E5' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3E6' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3E7' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3E8' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3E9' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3G1' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3G2' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3G3' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3G4' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3G5' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3G6' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3G7' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3G8' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3G9' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3H1' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3H2' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3H3' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3H4' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3H5' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3H6' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3H7' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3H8' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3H9' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3J1' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3J2' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3J3' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3J4' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3J5' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3J6' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3J7' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3J8' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3J9' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3K1' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3K2' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3K3' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3K4' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3K5' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3K6' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3K7' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3K8' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3K9' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3L1' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3L2' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3L3' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3L4' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3L5' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3L6' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3L7' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3L8' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3L9' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3M1' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3M2' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3M3' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3M4' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3M5' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3M6' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3M7' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3M8' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3M9' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3N1' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3N2' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3N3' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3N4' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3N5' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3N6' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3N7' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3N8' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3N9' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3P1' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3P2' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3P3' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3P4' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3P5' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3P6' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3P7' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3P8' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3P9' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3R1' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3R2' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3R3' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3R4' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3R5' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3R6' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3R7' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3R8' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3R9' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3S1' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3S2' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3S3' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3S4' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3S5' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3S6' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3S7' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3S8' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3S9' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3T1' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3T2' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3T3' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3T4' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3T5' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3T6' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3T7' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3T8' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3T9' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3V1' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3V2' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3V3' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3V4' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3V5' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3V6' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3V7' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3V8' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3V9' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3W1' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3W2' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3W3' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3W4' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3W5' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3W6' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3W7' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3W8' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3W9' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3X1' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3X2' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3X3' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3X4' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3X5' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3X6' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3X7' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3X8' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3X9' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3Y1' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3Y2' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3Y3' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3Y4' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3Y5' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3Y6' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3Y7' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3Y8' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3Y9' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3Z1' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3Z2' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3Z3' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3Z4' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3Z5' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3Z6' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3Z7' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3Z8' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 3Z9' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 4A1' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7E 4A2' and city = 'Yellowhead County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7Y 0B6' and city = 'Parkland County' and
state = 'AB';
delete from zip_codes where zip_code = 'T7Y 0C1' and city = 'Parkland County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 0R1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 0R2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5A1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5A2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5A3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5A4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5A5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5A6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5A7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5A8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5A9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5B1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5B2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5B3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5B4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5B5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5B6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5B7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5B8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5B9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5C1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5C2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5C3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5C5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5C6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5C7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5C8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5C9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5E1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5E2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5E3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5E4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5E5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5E6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5E7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5E8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5E9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5G1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5G2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5G3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5G4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5G5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5G6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5G7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5G8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8L 5G9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0E4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0G5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0G6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0G7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0G8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0G9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0H1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0H2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0H3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0H4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0H5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0H7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0H8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0H9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0J1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0J2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0J3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0J4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0J5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0J6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0J7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0J8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0J9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0K1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0K2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0K3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0K4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0K5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0K6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0K7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0K8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0K9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0L1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0L2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0L3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0L4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0L5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0L6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0M1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0M2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0M3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0M4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0M5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0M6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0M7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0M8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0M9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0N1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0N2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0N3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0N4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0N5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0N6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0N7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0N8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0N9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0P1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0P2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0P3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0P4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0P5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0P6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0P7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0P9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0R1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0R2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0R3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0R4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0R5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0R6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0R7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0R8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0R9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0S1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0S2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0S3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0S4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0S5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0S6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0S7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0S8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0S9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0T1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0T2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0T3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0T4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0T5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0T6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0T7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0T8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0T9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0V1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0V2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0V3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0V4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0V5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0V6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0V7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0V8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0V9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0W1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0W2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0W3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0W4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0W5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0W6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0W7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0W8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0W9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0X1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0X2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0X3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0X5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0X6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0X7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0X8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0X9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0Y1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0Y2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0Y3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0Y4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0Y5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0Y6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0Y7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0Y8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0Y9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0Z1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0Z2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0Z3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0Z4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0Z5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0Z6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0Z7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0Z8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 0Z9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 1W4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 1W5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 1W6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 1W7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 1W8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 1W9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 1X1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 1X2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 1X3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 1X4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 1X5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 1X6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 1X7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 1X8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 1X9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 1Y1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 1Y2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 1Y3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 1Y4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 1Y5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 1Y6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 1Y7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 1Y8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 1Y9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 1Z1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 1Z2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 1Z3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 1Z4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 1Z5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 1Z6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 1Z7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 1Z8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2A1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2A2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2A3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2A4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2A5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2A6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2A7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2A8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2A9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2B1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2B2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2B3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2B4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2B5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2B6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2B7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2B8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2B9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2C1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2C2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2C3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2C4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2C5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2C6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2C7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2C8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2C9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2E1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2E2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2E3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2E4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2E5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2E6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2E7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2E8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2E9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2G1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2G2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2G3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2G4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2G5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2G6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2G7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2G8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2G9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2H1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2H2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2H3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2H4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2H5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2H6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2H7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2H8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2H9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2J1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2J2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2J3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2J4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2J5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2J6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2J7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2J8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2J9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2K1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2K2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2K3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2K4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2K5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2K6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2K7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2K8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2K9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2L1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2L2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2L3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2L4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2L5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2L6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2L7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2L8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2L9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2M1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2M2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2M3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2M4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2M5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2M6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2M7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2M8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2N1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2N2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8R 2N3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0A1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0A2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0A3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0A4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0A5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0A6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0A7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0A8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0A9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0B1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0B2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0B3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0B4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0B5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0B6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0B7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0B8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0B9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0C1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0C2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0C3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0C4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0C5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0C6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0C7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0C8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0C9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0E1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0E2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0E3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0E4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0E5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0E6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0E7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0E8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0E9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0G1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0G2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0G3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0G4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0G5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0G6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0G7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0G8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0G9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0H1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0H2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0H3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0H4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0H5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0H6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0H7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0H8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0H9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0J1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0J2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0J4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0J5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0J6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0J7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0J8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0J9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0K1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0K2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0K3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0K4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0K5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0K7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0K8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0K9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0L1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0L2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0L3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0L4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0L5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0L6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0L7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0L8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0L9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0M1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0M8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0M9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0N1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0N2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0N4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0N5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0N7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0N8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0N9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0P1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0P2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0P3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0P4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0P5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0P6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0P8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0P9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0R1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0R2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0R4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0R6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0R7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0R8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0R9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0S1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0S2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0S3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0S4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0S5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0S6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0S7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0S8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0S9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0T1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0T2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0T3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0T5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0T6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0T7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0T8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0T9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0V1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0V2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0V3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0V4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0V5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0V6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0V7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0V8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0V9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0W1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0W2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0W3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0W4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0W5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0W6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0W7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0W8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0X1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0X2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0X3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0X4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0X5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0X6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0X7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0X8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0X9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0Y1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0Y2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0Y3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0Y5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0Y6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0Y7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0Y8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0Y9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0Z1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0Z2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0Z3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0Z4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0Z5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0Z6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0Z7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0Z8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 0Z9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1A1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1A2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1A3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1A4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1A5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1A7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1A8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1A9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1B1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1B2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1B3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1B4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1B5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1B6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1B7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1B8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1B9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1C1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1C2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1C3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1C7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1C8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1C9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1E1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1E2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1E3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1E4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1E5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1E6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1E7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1E8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1E9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1G1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1G2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1G3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1G4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1G5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1G6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1G7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1G8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1G9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1H1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1H2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1H3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1H4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1H8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1H9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1J1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1J2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1J3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1J4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1J5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1J6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1J7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1J8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1J9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1K2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1K3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1K4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1K5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1K6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1K7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1K8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1K9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1L1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1L2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1L3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1L4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1L5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1L6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1L7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1L8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1L9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1M1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1M2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1M3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1M4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1M5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1M6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1M7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1M8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1M9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1N1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1N2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1N3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1N4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1N5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1N6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1N7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1N8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1N9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1P1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1P2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1P3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1P4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1P5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1P6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1P7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1R4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1R5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1R6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1R7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1R8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1R9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1S1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1S2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1S3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1S4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1S5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1S6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1S7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1S8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1S9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1T1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1T2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1T3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1T4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1T5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1T6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1T7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1T8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1T9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1V1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1V2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1V3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1V4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1V5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1V6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1V7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1V8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1V9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1W1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1W2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1W3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1W4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1W5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1W6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1W7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1W8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1W9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1X1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1X2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1X3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1X4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1X5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1X6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1X7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1X9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1Y1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1Y2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1Y3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1Y4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1Y5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1Y6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1Y7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1Y8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1Y9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1Z1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1Z2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1Z3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1Z4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1Z5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1Z6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1Z7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1Z8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 1Z9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 2A1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 2A2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 2A3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 2A5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 2A6' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 2A7' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 2A8' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 2A9' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 2B1' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 2B2' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 2B3' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 2B4' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8T 2B5' and city = 'Sturgeon County' and
state = 'AB';
delete from zip_codes where zip_code = 'T8W 0H2' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 0H3' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5A1' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5A2' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5A3' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5A4' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5A5' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5A6' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5A7' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5A8' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5A9' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5B1' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5B2' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5B3' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5B4' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5B5' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5B6' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5B7' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5B8' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5B9' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5C1' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5C2' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5C3' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5C4' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5C5' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5C6' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5C7' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5C8' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5C9' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5E1' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5E2' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5E3' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5E4' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5E5' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5E6' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5E7' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5E8' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5E9' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5G1' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5G2' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5G3' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5G4' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5G5' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5G6' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5G7' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5G8' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5G9' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5H1' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5H2' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5H3' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5H5' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5H6' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5H7' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5H8' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5H9' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5J1' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5J3' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5J4' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5J5' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5J6' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5J7' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5J8' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5J9' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5K1' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5K2' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5K3' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5K4' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5K5' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8W 5K6' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 0G4' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4A1' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4A2' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4A3' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4A4' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4A5' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4A6' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4A7' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4A8' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4A9' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4B1' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4B2' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4B3' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4B4' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4B5' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4B6' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4B7' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4B8' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4B9' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4C1' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4C2' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4C3' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4C4' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4C5' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4C6' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4C7' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4C8' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4C9' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4E1' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4E2' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4E3' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4E4' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4E5' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4E6' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4E7' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4E8' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4E9' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4G1' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4G2' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4G3' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4G4' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4G5' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4G6' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4G7' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4G9' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4H1' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4H2' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4H3' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4H4' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4H5' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4H6' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4H7' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4H8' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4H9' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4J1' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4J2' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4J3' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4J4' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4J5' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4J7' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4J8' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4J9' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4K1' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4K2' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4K3' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4K4' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4K5' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4K6' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4K7' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4K8' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4K9' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4L1' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4L2' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4L3' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4L4' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4L5' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4M1' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4M2' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4M3' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4M4' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4M5' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4M6' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4M7' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4M8' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4M9' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4N1' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4N2' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4N3' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4N4' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4N5' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4N6' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4P2' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4P5' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4P6' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4P7' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4P8' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4R1' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T8X 4R2' and city = 'County Of Grande
Prairie No. 1' and state = 'AB';
delete from zip_codes where zip_code = 'T9E 0V3' and city = 'Edmonton International
Airport' and state = 'AB';
delete from zip_codes where zip_code = 'T9E 0V4' and city = 'Edmonton International
Airport' and state = 'AB';
delete from zip_codes where zip_code = 'T9E 0V5' and city = 'Edmonton International
Airport' and state = 'AB';
delete from zip_codes where zip_code = 'T9E 0V6' and city = 'Edmonton International
Airport' and state = 'AB';
delete from zip_codes where zip_code = 'T9E 0X7' and city = 'Edmonton International
Airport' and state = 'AB';
delete from zip_codes where zip_code = 'T9G 0A8' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0A9' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0B1' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0B2' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0B3' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0B4' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0B5' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0B6' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0B7' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0B8' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0B9' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0C1' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0C2' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0C3' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0C4' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0C5' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0C6' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0C7' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0C8' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0C9' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0E1' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0E2' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0E3' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0E4' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0E5' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0E6' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0E7' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0E8' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0E9' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0G1' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0G2' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0G3' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0G4' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0G5' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0G6' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0G7' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0G8' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0G9' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0H1' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0H2' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0H3' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0H4' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0H5' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0H6' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0H7' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0H8' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0H9' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0J1' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0J2' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0J3' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0J4' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0J5' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0J6' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0J7' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0J8' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0J9' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0K2' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0K3' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0K4' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0K5' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0K6' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0K7' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0K8' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0K9' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0L1' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0L2' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0L3' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0L4' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0L5' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9G 0L6' and city = 'Leduc County' and
state = 'AB';
delete from zip_codes where zip_code = 'T9N 0B6' and city = 'Md Of Bonnyville' and
state = 'AB';
delete from zip_codes where zip_code = 'V0B 1A1' and city = 'Kuskanook' and state =
'BC';
delete from zip_codes where zip_code = 'V0B 1A3' and city = 'Destiny Bay' and state
= 'BC';
delete from zip_codes where zip_code = 'V0B 1T5' and city = 'Koocanusa - West' and
state = 'BC';
delete from zip_codes where zip_code = 'V0B 1T6' and city = 'Gold Creek' and state
= 'BC';
delete from zip_codes where zip_code = 'V0E 2K2' and city = 'Swansea Point' and
state = 'BC';
delete from zip_codes where zip_code = 'V0J 0B7' and city = 'Ware' and state =
'BC';
delete from zip_codes where zip_code = 'V0J 1Y3' and city = 'Sik-e-dakh' and state
= 'BC';
delete from zip_codes where zip_code = 'V0J 3B0' and city = 'Ware' and state =
'BC';
delete from zip_codes where zip_code = 'V0N 1M0' and city = 'Dawsons Landing' and
state = 'BC';
delete from zip_codes where zip_code = 'V0N 2B0' and city = 'Kingcome Inlet' and
state = 'BC';
delete from zip_codes where zip_code = 'V0P 0A4' and city = 'Kyuquot' and state =
'BC';
delete from zip_codes where zip_code = 'V0P 1J0' and city = 'Kyuquot' and state =
'BC';
delete from zip_codes where zip_code = 'V0P 1L0' and city = 'Minstrel Island' and
state = 'BC';
delete from zip_codes where zip_code = 'V0P 1S0' and city = 'Simoom Sound' and
state = 'BC';
delete from zip_codes where zip_code = 'V0T 0A3' and city = 'Ocean Falls' and state
= 'BC';
delete from zip_codes where zip_code = 'V0T 1P0' and city = 'Ocean Falls' and state
= 'BC';
delete from zip_codes where zip_code = 'V1S 0B2' and city = 'Tobiano' and state =
'BC';
delete from zip_codes where zip_code = 'V1S 0B3' and city = 'Tobiano' and state =
'BC';
delete from zip_codes where zip_code = 'V1S 0B4' and city = 'Tobiano' and state =
'BC';
delete from zip_codes where zip_code = 'V1Z 4A9' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V1Z 4B1' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V1Z 4B2' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V1Z 4B3' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V1Z 4B4' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V1Z 4B5' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V1Z 4B6' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V1Z 4B7' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V1Z 4B8' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V1Z 4B9' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V1Z 4C2' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V1Z 4C3' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V1Z 4C5' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V1Z 4C6' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V1Z 4C7' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V1Z 4C8' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V1Z 4E2' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 0A2' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 2Y4' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 2Y5' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 2Y6' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 2Y7' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 2Y8' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 2Z3' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 2Z4' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 2Z6' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 2Z7' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3A6' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3A7' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3A8' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3A9' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3B1' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3B2' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3B3' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3B4' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3B5' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3B6' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3B9' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3C7' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3C8' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3C9' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3E4' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3E7' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3E8' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3E9' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3G6' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3G7' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3G8' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3G9' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3H2' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3H3' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3H4' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3H5' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3H6' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3H9' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3J1' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3J3' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3J4' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3J5' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3J7' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3K4' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3L2' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3L5' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 3L6' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'V4T 4C2' and city = 'West Kelowna' and
state = 'BC';
delete from zip_codes where zip_code = 'X0A 0A0' and city = 'Arctic Bay' and state
= 'NU';
delete from zip_codes where zip_code = 'X0A 0A1' and city = 'Iqaluit' and state =
'NU';
delete from zip_codes where zip_code = 'X0A 0A2' and city = 'Resolute' and state =
'NU';
delete from zip_codes where zip_code = 'X0A 0A3' and city = 'Sanikiluaq' and state
= 'NU';
delete from zip_codes where zip_code = 'X0A 0B0' and city = 'Qikiqtarjuaq' and
state = 'NU';
delete from zip_codes where zip_code = 'X0A 0C0' and city = 'Cape Dorset' and state
= 'NU';
delete from zip_codes where zip_code = 'X0A 0E0' and city = 'Clyde River' and state
= 'NU';
delete from zip_codes where zip_code = 'X0A 0G0' and city = 'Eureka' and state =
'NU';
delete from zip_codes where zip_code = 'X0A 0H0' and city = 'Iqaluit' and state =
'NU';
delete from zip_codes where zip_code = 'X0A 0J0' and city = 'Grise Fiord' and state
= 'NU';
delete from zip_codes where zip_code = 'X0A 0K0' and city = 'Hall Beach' and state
= 'NU';
delete from zip_codes where zip_code = 'X0A 0L0' and city = 'Igloolik' and state =
'NU';
delete from zip_codes where zip_code = 'X0A 0N0' and city = 'Kimmirut' and state =
'NU';
delete from zip_codes where zip_code = 'X0A 0R0' and city = 'Pangnirtung' and state
= 'NU';
delete from zip_codes where zip_code = 'X0A 0S0' and city = 'Pond Inlet' and state
= 'NU';
delete from zip_codes where zip_code = 'X0A 0V0' and city = 'Resolute' and state =
'NU';
delete from zip_codes where zip_code = 'X0A 0W0' and city = 'Sanikiluaq' and state
= 'NU';
delete from zip_codes where zip_code = 'X0A 1H0' and city = 'Iqaluit' and state =
'NU';
delete from zip_codes where zip_code = 'X0B 0A1' and city = 'Cambridge Bay' and
state = 'NU';
delete from zip_codes where zip_code = 'X0B 0A2' and city = 'Kugluktuk' and state =
'NU';
delete from zip_codes where zip_code = 'X0B 0A3' and city = 'Gjoa Haven' and state
= 'NU';
delete from zip_codes where zip_code = 'X0B 0A4' and city = 'Kugaaruk' and state =
'NU';
delete from zip_codes where zip_code = 'X0B 0C0' and city = 'Cambridge Bay' and
state = 'NU';
delete from zip_codes where zip_code = 'X0B 0E0' and city = 'Kugluktuk' and state =
'NU';
delete from zip_codes where zip_code = 'X0B 1B0' and city = 'Taloyoak' and state =
'NU';
delete from zip_codes where zip_code = 'X0B 1J0' and city = 'Gjoa Haven' and state
= 'NU';
delete from zip_codes where zip_code = 'X0B 1K0' and city = 'Kugaaruk' and state =
'NU';
delete from zip_codes where zip_code = 'X0B 2A0' and city = 'Bay Chimo' and state =
'NU';
delete from zip_codes where zip_code = 'X0C 0A0' and city = 'Baker Lake' and state
= 'NU';
delete from zip_codes where zip_code = 'X0C 0A1' and city = 'Rankin Inlet' and
state = 'NU';
delete from zip_codes where zip_code = 'X0C 0B0' and city = 'Chesterfield Inlet'
and state = 'NU';
delete from zip_codes where zip_code = 'X0C 0C0' and city = 'Coral Harbour' and
state = 'NU';
delete from zip_codes where zip_code = 'X0C 0E0' and city = 'Arviat' and state =
'NU';
delete from zip_codes where zip_code = 'X0C 0G0' and city = 'Rankin Inlet' and
state = 'NU';
delete from zip_codes where zip_code = 'X0C 0H0' and city = 'Repulse Bay' and state
= 'NU';
delete from zip_codes where zip_code = 'X0C 0J0' and city = 'Whale Cove' and state
= 'NU';
delete from zip_codes where zip_code = 'X0E 0A0' and city = 'Aklavik' and state =
'NT';
delete from zip_codes where zip_code = 'X0E 0A2' and city = 'Fort Good Hope' and
state = 'NT';
delete from zip_codes where zip_code = 'X0E 0A6' and city = 'Deline' and state =
'NT';
delete from zip_codes where zip_code = 'X0E 0B3' and city = 'Tulita' and state =
'NT';
delete from zip_codes where zip_code = 'X0E 0G0' and city = 'Deline' and state =
'NT';
delete from zip_codes where zip_code = 'X0E 0H0' and city = 'Fort Good Hope' and
state = 'NT';
delete from zip_codes where zip_code = 'X0E 0K0' and city = 'Tulita' and state =
'NT';
delete from zip_codes where zip_code = 'X0E 0S0' and city = 'Ulukhaktok' and state
= 'NT';
delete from zip_codes where zip_code = 'X0E 0V0' and city = 'Norman Wells' and
state = 'NT';
delete from zip_codes where zip_code = 'X0E 0Z0' and city = 'Sachs Harbour' and
state = 'NT';
delete from zip_codes where zip_code = 'X0E 1A0' and city = 'Lutselk''e' and state
= 'NT';
delete from zip_codes where zip_code = 'X0E 1L0' and city = 'Colville Lake' and
state = 'NT';
delete from zip_codes where zip_code = 'X0E 1N0' and city = 'Paulatuk' and state =
'NT';
delete from zip_codes where zip_code = 'X0E 1P0' and city = 'Whati' and state =
'NT';
delete from zip_codes where zip_code = 'X0E 1R0' and city = 'Gameti' and state =
'NT';
delete from zip_codes where zip_code = 'X0E 1W0' and city = 'Wekweti' and state =
'NT';
delete from zip_codes where zip_code = 'X0E 1Z0' and city = 'Trout Lake' and state
= 'NT';
delete from zip_codes where zip_code = 'Y0B 1N0' and city = 'Old Crow' and state =
'YT';

update zip_codes set city = 'Airdrie' where zip_code = 'T4B 2Z8' and city =
'Rocky View County' and state = 'AB';
update zip_codes set city = 'Anchorage' where zip_code = '99505' and city =
'Jber' and state = 'AK';
update zip_codes set city = 'Anchorage' where zip_code = '99506' and city =
'Jber' and state = 'AK';
update zip_codes set city = 'Andrews A F B' where zip_code = '20762' and city =
'Andrews Air Force Base' and state = 'MD';
update zip_codes set city = 'Apohaqui' where zip_code = 'E5P 1Z9' and city =
'Riverbank South' and state = 'NB';
update zip_codes set city = 'Apohaqui' where zip_code = 'E5P 3A2' and city =
'Riverbank South' and state = 'NB';
update zip_codes set city = 'Apohaqui' where zip_code = 'E5P 3C5' and city =
'Riverbank South' and state = 'NB';
update zip_codes set city = 'Apohaqui' where zip_code = 'E5P 3C7' and city =
'Riverbank South' and state = 'NB';
update zip_codes set city = 'Auburn' where zip_code = '36849' and city = 'Auburn
University' and state = 'AL';
update zip_codes set city = 'Baie De Petit Pokemou' where zip_code = 'E8S 2Y6'
and city = 'Baie De Petit-pokemouche' and state = 'NB';
update zip_codes set city = 'Baie De Petit Pokemou' where zip_code = 'E8S 2Y7'
and city = 'Baie De Petit-pokemouche' and state = 'NB';
update zip_codes set city = 'Baie De Petit Pokemou' where zip_code = 'E8S 2Y8'
and city = 'Baie De Petit-pokemouche' and state = 'NB';
update zip_codes set city = 'Baie De Petit Pokemou' where zip_code = 'E8S 2Y9'
and city = 'Baie De Petit-pokemouche' and state = 'NB';
update zip_codes set city = 'Baie De Petit Pokemou' where zip_code = 'E8S 2Z1'
and city = 'Baie De Petit-pokemouche' and state = 'NB';
update zip_codes set city = 'Baie De Petit Pokemou' where zip_code = 'E8S 2Z2'
and city = 'Baie De Petit-pokemouche' and state = 'NB';
update zip_codes set city = 'Baie De Petit Pokemou' where zip_code = 'E8S 2Z3'
and city = 'Baie De Petit-pokemouche' and state = 'NB';
update zip_codes set city = 'Baie De Petit Pokemou' where zip_code = 'E8S 2Z4'
and city = 'Baie De Petit-pokemouche' and state = 'NB';
update zip_codes set city = 'Baie De Petit Pokemou' where zip_code = 'E8S 2Z5'
and city = 'Baie De Petit-pokemouche' and state = 'NB';
update zip_codes set city = 'Baie De Petit Pokemou' where zip_code = 'E8S 2Z6'
and city = 'Baie De Petit-pokemouche' and state = 'NB';
update zip_codes set city = 'Baie De Petit Pokemou' where zip_code = 'E8S 2Z8'
and city = 'Baie De Petit-pokemouche' and state = 'NB';
update zip_codes set city = 'Baie De Petit Pokemou' where zip_code = 'E8S 2Z9'
and city = 'Baie De Petit-pokemouche' and state = 'NB';
update zip_codes set city = 'Baie De Petit Pokemou' where zip_code = 'E8S 3A1'
and city = 'Baie De Petit-pokemouche' and state = 'NB';
update zip_codes set city = 'Baie De Petit Pokemou' where zip_code = 'E8S 3A2'
and city = 'Baie De Petit-pokemouche' and state = 'NB';
update zip_codes set city = 'Baltimore' where zip_code = '21244' and city =
'Windsor Mill' and state = 'MD';
update zip_codes set city = 'Barre' where zip_code = 'G0R 1B0' and city = 'Saint-
cyprien-des-etchemins' and state = 'QC';
update zip_codes set city = 'Bay Saint Louis' where zip_code = '39522' and city =
'Stennis Space Center' and state = 'MS';
update zip_codes set city = 'Beaulac' where zip_code = 'G0Y 1B0' and city =
'Beaulac-garthby' and state = 'QC';
update zip_codes set city = 'Beaumont' where zip_code = 'T4X 1M4' and city =
'Leduc County' and state = 'AB';
update zip_codes set city = 'Beaumont' where zip_code = 'T4X 1P6' and city =
'Leduc County' and state = 'AB';
update zip_codes set city = 'Beaumont' where zip_code = 'T4X 1P9' and city =
'Leduc County' and state = 'AB';
update zip_codes set city = 'Bell Ewart' where zip_code = 'L0L 1C0' and city =
'Belle Ewart' and state = 'ON';
update zip_codes set city = 'Bella Bella' where zip_code = 'V0T 1B0' and city =
'Denny Island' and state = 'BC';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2R4' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2R5' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2R6' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2R7' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2R8' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2R9' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2S1' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2S2' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2S3' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2S4' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2S5' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2S6' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2S7' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2S8' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2S9' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2T1' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2T2' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2T3' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2T4' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2T5' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2T6' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2T7' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2T8' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2T9' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2V1' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2V2' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2V3' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2V4' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2V5' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2V6' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2V7' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2V8' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2V9' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2W1' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2W2' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2W3' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2W4' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2W5' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2W6' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2W8' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2W9' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2X1' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2X2' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2X3' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2X4' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2X5' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2X6' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2X7' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2X8' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2X9' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2Y1' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2Y2' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2Y3' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2Y4' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2Y5' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2Y6' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2Y7' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2Y8' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2Y9' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2Z1' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2Z2' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2Z3' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2Z4' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2Z5' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 2Z6' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 3C2' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 3C3' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 5S5' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Big Cove' where zip_code = 'E4W 5S6' and city =
'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Blackland Restigouche' where zip_code = 'E8E 2T5'
and city = 'Blackland Restigouche Co' and state = 'NB';
update zip_codes set city = 'Blackland Restigouche' where zip_code = 'E8E 2T6'
and city = 'Blackland Restigouche Co' and state = 'NB';
update zip_codes set city = 'Blackland Restigouche' where zip_code = 'E8E 2T7'
and city = 'Blackland Restigouche Co' and state = 'NB';
update zip_codes set city = 'Blackland Restigouche' where zip_code = 'E8E 2T8'
and city = 'Blackland Restigouche Co' and state = 'NB';
update zip_codes set city = 'Blackland Restigouche' where zip_code = 'E8E 2T9'
and city = 'Blackland Restigouche Co' and state = 'NB';
update zip_codes set city = 'Blackland Restigouche' where zip_code = 'E8E 2X5'
and city = 'Blackland Restigouche Co' and state = 'NB';
update zip_codes set city = 'Bloomfield Carleton C' where zip_code = 'E7K 1C5'
and city = 'Bloomfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Bloomfield Carleton C' where zip_code = 'E7K 1C8'
and city = 'Bloomfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Bloomfield Carleton C' where zip_code = 'E7K 1C9'
and city = 'Bloomfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Bloomfield Carleton C' where zip_code = 'E7K 1E1'
and city = 'Bloomfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Bloomfield Carleton C' where zip_code = 'E7K 1E2'
and city = 'Bloomfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Bloomfield Carleton C' where zip_code = 'E7K 1E3'
and city = 'Bloomfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Bloomfield Carleton C' where zip_code = 'E7K 1E4'
and city = 'Bloomfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Bloomfield Carleton C' where zip_code = 'E7K 1J7'
and city = 'Bloomfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Bloomfield Carleton C' where zip_code = 'E7K 1J8'
and city = 'Bloomfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Bloomfield Carleton C' where zip_code = 'E7K 1L5'
and city = 'Bloomfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Bloomfield Carleton C' where zip_code = 'E7K 1M4'
and city = 'Bloomfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Bloomfield Carleton C' where zip_code = 'E7K 1M5'
and city = 'Bloomfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Bloomfield Carleton C' where zip_code = 'E7K 1M7'
and city = 'Bloomfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Bloomfield Carleton C' where zip_code = 'E7K 1M8'
and city = 'Bloomfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Bloomfield Carleton C' where zip_code = 'E7K 1M9'
and city = 'Bloomfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Bloomfield Carleton C' where zip_code = 'E7K 1N1'
and city = 'Bloomfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Bloomfield Carleton C' where zip_code = 'E7K 1N2'
and city = 'Bloomfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Bloomfield Carleton C' where zip_code = 'E7K 1N3'
and city = 'Bloomfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Bloomfield Carleton C' where zip_code = 'E7K 1N4'
and city = 'Bloomfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Bloomfield Carleton C' where zip_code = 'E7K 1N5'
and city = 'Bloomfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Bloomfield Carleton C' where zip_code = 'E7K 1N6'
and city = 'Bloomfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Bloomfield Carleton C' where zip_code = 'E7K 1N7'
and city = 'Bloomfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Bloomfield Carleton C' where zip_code = 'E7K 1N8'
and city = 'Bloomfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Bloomfield Carleton C' where zip_code = 'E7K 1N9'
and city = 'Bloomfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Bloomfield Carleton C' where zip_code = 'E7K 1P3'
and city = 'Bloomfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Bloomfield Carleton C' where zip_code = 'E7K 1P4'
and city = 'Bloomfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Bloomfield Carleton C' where zip_code = 'E7K 1P6'
and city = 'Bloomfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Boothbay' where zip_code = '04549' and city = 'Isle
Of Springs' and state = 'ME';
update zip_codes set city = 'Briggs Corner Queens' where zip_code = 'E4A 1J7' and
city = 'Briggs Corner Queens Co' and state = 'NB';
update zip_codes set city = 'Briggs Corner Queens' where zip_code = 'E4A 1J8' and
city = 'Briggs Corner Queens Co' and state = 'NB';
update zip_codes set city = 'Briggs Corner Queens' where zip_code = 'E4A 1J9' and
city = 'Briggs Corner Queens Co' and state = 'NB';
update zip_codes set city = 'Briggs Corner Queens' where zip_code = 'E4A 1K1' and
city = 'Briggs Corner Queens Co' and state = 'NB';
update zip_codes set city = 'Briggs Corner Queens' where zip_code = 'E4A 1K2' and
city = 'Briggs Corner Queens Co' and state = 'NB';
update zip_codes set city = 'Briggs Corner Queens' where zip_code = 'E4A 1K3' and
city = 'Briggs Corner Queens Co' and state = 'NB';
update zip_codes set city = 'Briggs Corner Queens' where zip_code = 'E4A 1K4' and
city = 'Briggs Corner Queens Co' and state = 'NB';
update zip_codes set city = 'Briggs Corner Queens' where zip_code = 'E4A 1K5' and
city = 'Briggs Corner Queens Co' and state = 'NB';
update zip_codes set city = 'Briggs Corner Queens' where zip_code = 'E4A 1K6' and
city = 'Briggs Corner Queens Co' and state = 'NB';
update zip_codes set city = 'Briggs Corner Queens' where zip_code = 'E4A 1K7' and
city = 'Briggs Corner Queens Co' and state = 'NB';
update zip_codes set city = 'Briggs Corner Queens' where zip_code = 'E4A 1K8' and
city = 'Briggs Corner Queens Co' and state = 'NB';
update zip_codes set city = 'Briggs Corner Queens' where zip_code = 'E4A 1K9' and
city = 'Briggs Corner Queens Co' and state = 'NB';
update zip_codes set city = 'Briggs Corner Queens' where zip_code = 'E4A 1W2' and
city = 'Briggs Corner Queens Co' and state = 'NB';
update zip_codes set city = 'Briggs Corner Queens' where zip_code = 'E4A 1W3' and
city = 'Briggs Corner Queens Co' and state = 'NB';
update zip_codes set city = 'Briggs Corner Queens' where zip_code = 'E4A 1W4' and
city = 'Briggs Corner Queens Co' and state = 'NB';
update zip_codes set city = 'Briggs Corner Queens' where zip_code = 'E4A 1W5' and
city = 'Briggs Corner Queens Co' and state = 'NB';
update zip_codes set city = 'Briggs Corner Queens' where zip_code = 'E4A 1W6' and
city = 'Briggs Corner Queens Co' and state = 'NB';
update zip_codes set city = 'Briggs Corner Queens' where zip_code = 'E4A 1W7' and
city = 'Briggs Corner Queens Co' and state = 'NB';
update zip_codes set city = 'Briggs Corner Queens' where zip_code = 'E4A 1W8' and
city = 'Briggs Corner Queens Co' and state = 'NB';
update zip_codes set city = 'Briggs Corner Queens' where zip_code = 'E4A 1W9' and
city = 'Briggs Corner Queens Co' and state = 'NB';
update zip_codes set city = 'Briggs Corner Queens' where zip_code = 'E4A 1X1' and
city = 'Briggs Corner Queens Co' and state = 'NB';
update zip_codes set city = 'Briggs Corner Queens' where zip_code = 'E4A 1X2' and
city = 'Briggs Corner Queens Co' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2A1' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2A2' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2A3' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2A4' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2A5' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2A6' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2A8' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2A9' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2B2' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2C2' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2C3' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2C4' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2C5' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2C6' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2C7' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2C8' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2C9' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2E1' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2E2' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2E3' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2E4' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2E5' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2E6' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2E7' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2E8' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2E9' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2G1' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2G2' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2G3' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2G4' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2G5' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2G6' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2G7' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2G8' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2G9' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2H1' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2H2' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2H3' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2H5' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2H6' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2H7' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2J1' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2J2' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2J3' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2J4' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2J6' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2J7' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2J8' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2J9' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2K1' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2K2' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2K4' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2P6' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2P7' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2R2' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2R3' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2W8' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2W9' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2X8' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 2Y3' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 4T2' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 4T3' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Bristol' where zip_code = 'E7L 7H4' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 1Z6'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 1Z7'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 1Z8'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 1Z9'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 2A1'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 2A2'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 2A3'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 2A4'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 2A5'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 2A6'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 2A7'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 2A8'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 2A9'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 2B1'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 2B2'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 2B3'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 2B4'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 2B5'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 2B6'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 2B7'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 2B8'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 2B9'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 2C1'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 2C2'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 2C3'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 2C4'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 2C5'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 2C6'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 2C7'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 2C8'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 2C9'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 2E1'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 2E2'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 2E3'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 2E4'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 2E5'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 2E6'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 2E7'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 2E8'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 2E9'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 3E2'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 3E3'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 4C3'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 4C4'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 4L2'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Burnt Church Firsaint' where zip_code = 'E9G 4L3'
and city = 'Burnt Church First Nation' and state = 'NB';
update zip_codes set city = 'Bushkill' where zip_code = '18373' and city = 'Unity
House' and state = 'PA';
update zip_codes set city = 'Cabano' where zip_code = 'G0L 1E0' and city =
'Temiscouata-sur-le-lac' and state = 'QC';
update zip_codes set city = 'Calgary' where zip_code = 'T1X 1G2' and city =
'Rocky View County' and state = 'AB';
update zip_codes set city = 'Campbell Settlement Y' where zip_code = 'E6G 2A6'
and city = 'Campbell Settlement York Co' and state = 'NB';
update zip_codes set city = 'Campbell Settlement Y' where zip_code = 'E6G 2A7'
and city = 'Campbell Settlement York Co' and state = 'NB';
update zip_codes set city = 'Campbell Settlement Y' where zip_code = 'E6G 2A8'
and city = 'Campbell Settlement York Co' and state = 'NB';
update zip_codes set city = 'Campbell Settlement Y' where zip_code = 'E6G 2A9'
and city = 'Campbell Settlement York Co' and state = 'NB';
update zip_codes set city = 'Campbell Settlement Y' where zip_code = 'E6G 2B1'
and city = 'Campbell Settlement York Co' and state = 'NB';
update zip_codes set city = 'Campbell Settlement Y' where zip_code = 'E6G 2B2'
and city = 'Campbell Settlement York Co' and state = 'NB';
update zip_codes set city = 'Campbell Settlement Y' where zip_code = 'E6G 2B3'
and city = 'Campbell Settlement York Co' and state = 'NB';
update zip_codes set city = 'Campbell Settlement Y' where zip_code = 'E6G 2B4'
and city = 'Campbell Settlement York Co' and state = 'NB';
update zip_codes set city = 'Campbell Settlement Y' where zip_code = 'E6G 2B5'
and city = 'Campbell Settlement York Co' and state = 'NB';
update zip_codes set city = 'Campbell Settlement Y' where zip_code = 'E6G 2B6'
and city = 'Campbell Settlement York Co' and state = 'NB';
update zip_codes set city = 'Campbell Settlement Y' where zip_code = 'E6G 2B7'
and city = 'Campbell Settlement York Co' and state = 'NB';
update zip_codes set city = 'Cape Charles' where zip_code = 'A0K 1T0' and city =
'Lodge Bay' and state = 'NL';
update zip_codes set city = 'Carnarvon' where zip_code = 'K0M 1J0' and city =
'Algonquin Highlands' and state = 'ON';
update zip_codes set city = 'Carson City' where zip_code = '89704' and city =
'Washoe Valley' and state = 'NV';
update zip_codes set city = 'Casa Rio' where zip_code = 'S7T 1B5' and city =
'Casa Rio' and state = 'SK';
update zip_codes set city = 'Casa Rio' where zip_code = 'S7T 1B6' and city =
'Casa Rio' and state = 'SK';
update zip_codes set city = 'Casa Rio' where zip_code = 'S7T 1B8' and city =
'Casa Rio' and state = 'SK';
update zip_codes set city = 'Cascapedia Saint Jule' where zip_code = 'G0C 1T0'
and city = 'Cascapedia-saint-jules' and state = 'QC';
update zip_codes set city = 'Casper' where zip_code = '82615' and city = 'Shirley
Basin' and state = 'WY';
update zip_codes set city = 'Charette' where zip_code = 'G0X 1E0' and city =
'Saint-elie-de-caxton' and state = 'QC';
update zip_codes set city = 'Cherry Brook' where zip_code = 'B2Z 1A5' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Clairborne' where zip_code = '21624' and city =
'Claiborne' and state = 'MD';
update zip_codes set city = 'Clearwater River' where zip_code = 'S0M 3H0' and
city = 'Clearwater River' and state = 'SK';
update zip_codes set city = 'Cochiti' where zip_code = '87083' and city =
'Cochiti Lake' and state = 'NM';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 1M3'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2K4'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2K5'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2K6'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2K7'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2K8'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2K9'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2L1'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2L2'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2L3'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2L4'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2L5'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2L6'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2L7'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2L8'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2L9'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2M2'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2M3'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2M4'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2P4'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2P5'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2P6'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2P7'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2P8'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2P9'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2R1'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2R2'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2R3'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2R7'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2R8'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2R9'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2S1'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2S2'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2S3'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2S4'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2S5'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2S6'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2S7'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2S8'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2S9'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2T1'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2T2'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2T3'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2T4'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2T5'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2T7'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2T8'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2T9'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2V1'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2V2'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2V3'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2V4'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2V6'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2V7'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2V8'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2V9'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2W1'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2W2'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2W3'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2W4'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2W5'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2W6'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2W7'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2W8'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2W9'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2X1'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2X2'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2X3'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2X4'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 2X5'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 4H1'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 4H2'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 4H7'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 4L2'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 4N4'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 4P6'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 4S7'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Coles Island Queens C' where zip_code = 'E4C 6E8'
and city = 'Coles Island Queens Co' and state = 'NB';
update zip_codes set city = 'Collingwood' where zip_code = 'L9Y 3Z2' and city =
'Blue Mountains' and state = 'ON';
update zip_codes set city = 'Connellys Springs' where zip_code = '28612' and city
= 'Connelly Springs' and state = 'NC';
update zip_codes set city = 'Cookshire' where zip_code = 'J0B 1M0' and city =
'Cookshire-eaton' and state = 'QC';
update zip_codes set city = 'Coppersands' where zip_code = 'S4L 1B3' and city =
'Coppersands' and state = 'SK';
update zip_codes set city = 'Coppersands' where zip_code = 'S4L 1B4' and city =
'Coppersands' and state = 'SK';
update zip_codes set city = 'Coppersands' where zip_code = 'S4L 1B5' and city =
'Coppersands' and state = 'SK';
update zip_codes set city = 'Corman Park' where zip_code = 'S7P 1A1' and city =
'Corman Park' and state = 'SK';
update zip_codes set city = 'Corman Park' where zip_code = 'S7P 1A3' and city =
'Corman Park' and state = 'SK';
update zip_codes set city = 'Corman Park' where zip_code = 'S7T 1B7' and city =
'Corman Park' and state = 'SK';
update zip_codes set city = 'Corman Park' where zip_code = 'S7T 1B9' and city =
'Corman Park' and state = 'SK';
update zip_codes set city = 'Corman Park' where zip_code = 'S7T 1C1' and city =
'Corman Park' and state = 'SK';
update zip_codes set city = 'Corman Park' where zip_code = 'S7T 1C5' and city =
'Corman Park' and state = 'SK';
update zip_codes set city = 'Corman Park' where zip_code = 'S7T 1C6' and city =
'Corman Park' and state = 'SK';
update zip_codes set city = 'Corman Park' where zip_code = 'S7T 1C7' and city =
'Corman Park' and state = 'SK';
update zip_codes set city = 'Cross Roads Country H' where zip_code = 'B0H 1J0'
and city = 'Cross Roads Country Harbour' and state = 'NS';
update zip_codes set city = 'Dammeron' where zip_code = '84783' and city =
'Dammeron Valley' and state = 'UT';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 3P3' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 3P4' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 3P5' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 3P6' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 3P7' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 3P8' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 3P9' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 3R1' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 3R2' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 3R3' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 3R4' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 3R5' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 3R6' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 3V5' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 3V6' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 3V9' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 3W1' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 3W2' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 3W3' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 3W4' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 3W5' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 3W6' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 3W7' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 3W8' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 3W9' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 3X1' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 3X2' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 3X3' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 3X4' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 3X5' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 4M4' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 6C2' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 6C3' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 6C7' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 6C8' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 6K6' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 6L1' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Dartmouth' where zip_code = 'B2W 6M5' and city =
'Lake Loon' and state = 'NS';
update zip_codes set city = 'Deer Valley' where zip_code = 'S2V 1B5' and city =
'Deer Valley' and state = 'SK';
update zip_codes set city = 'Deer Valley' where zip_code = 'S2V 1B6' and city =
'Deer Valley' and state = 'SK';
update zip_codes set city = 'Deer Valley' where zip_code = 'S2V 1B7' and city =
'Deer Valley' and state = 'SK';
update zip_codes set city = 'Deer Valley' where zip_code = 'S2V 1B8' and city =
'Deer Valley' and state = 'SK';
update zip_codes set city = 'Deer Valley' where zip_code = 'S2V 1B9' and city =
'Deer Valley' and state = 'SK';
update zip_codes set city = 'Deschaillons Sur Sain' where zip_code = 'G0S 1G0'
and city = 'Deschaillons-sur-saint-laurent' and state = 'QC';
update zip_codes set city = 'Deschambault Lake' where zip_code = 'S0P 0C0' and
city = 'Deschambault Lake' and state = 'SK';
update zip_codes set city = 'Dijon' where zip_code = 'G0R 1L0' and city = 'Saint-
luc-de-bellechasse' and state = 'QC';
update zip_codes set city = 'Dildo South' where zip_code = 'A0B 1R0' and city =
'South Dildo' and state = 'NL';
update zip_codes set city = 'Dillon' where zip_code = 'S0M 0S0' and city =
'Dillon' and state = 'SK';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1G8'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1G9'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1H1'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1H2'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1H3'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1H4'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1H5'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1H6'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1H7'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1H8'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1H9'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1J1'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1J2'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1J3'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1J4'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1J5'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1J6'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1J7'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1J8'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1J9'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1K1'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1K2'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1K3'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1K4'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1K7'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1K8'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1K9'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1L1'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1L2'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1L3'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1L4'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1L5'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1L6'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1L7'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1L8'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1N2'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1N3'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1N4'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1N5'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1N6'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1N7'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1N8'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1N9'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1P1'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1P2'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1P3'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1P4'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1P5'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1P6'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1P7'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1P8'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1P9'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1R1'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1R2'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1R3'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1R4'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1R5'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1R6'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1R7'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1R8'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1R9'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1S1'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1S2'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1S3'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1S4'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1S5'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1S6'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1S7'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1S8'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1S9'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1T1'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1T2'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1T3'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1T4'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1T5'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1T6'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1T7'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1T8'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1Y8'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1Y9'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1Z1'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1Z2'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1Z3'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1Z4'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1Z5'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 1Z6'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 2H4'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 2H7'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 2Y1'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Dsl De Grand Sault-Fa' where zip_code = 'E3Z 9A2'
and city = 'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Duluth' where zip_code = '30026' and city = 'North
Metro' and state = 'GA';
update zip_codes set city = 'Duluth' where zip_code = '30029' and city = 'North
Metro' and state = 'GA';
update zip_codes set city = 'Easaint Lawrencetown' where zip_code = 'B2Z 1N5' and
city = 'East Lawrencetown' and state = 'NS';
update zip_codes set city = 'Easaint Lawrencetown' where zip_code = 'B2Z 1N7' and
city = 'East Lawrencetown' and state = 'NS';
update zip_codes set city = 'Easaint Lawrencetown' where zip_code = 'B2Z 1N8' and
city = 'East Lawrencetown' and state = 'NS';
update zip_codes set city = 'Easaint Lawrencetown' where zip_code = 'B2Z 1N9' and
city = 'East Lawrencetown' and state = 'NS';
update zip_codes set city = 'Easaint Lawrencetown' where zip_code = 'B2Z 1P1' and
city = 'East Lawrencetown' and state = 'NS';
update zip_codes set city = 'Easaint Lawrencetown' where zip_code = 'B2Z 1P2' and
city = 'East Lawrencetown' and state = 'NS';
update zip_codes set city = 'Easaint Lawrencetown' where zip_code = 'B2Z 1P3' and
city = 'East Lawrencetown' and state = 'NS';
update zip_codes set city = 'Easaint Lawrencetown' where zip_code = 'B2Z 1P4' and
city = 'East Lawrencetown' and state = 'NS';
update zip_codes set city = 'Easaint Lawrencetown' where zip_code = 'B2Z 1P5' and
city = 'East Lawrencetown' and state = 'NS';
update zip_codes set city = 'Easaint Lawrencetown' where zip_code = 'B2Z 1P6' and
city = 'East Lawrencetown' and state = 'NS';
update zip_codes set city = 'Easaint Lawrencetown' where zip_code = 'B2Z 1P7' and
city = 'East Lawrencetown' and state = 'NS';
update zip_codes set city = 'Easaint Lawrencetown' where zip_code = 'B2Z 1P8' and
city = 'East Lawrencetown' and state = 'NS';
update zip_codes set city = 'Easaint Lawrencetown' where zip_code = 'B2Z 1T4' and
city = 'East Lawrencetown' and state = 'NS';
update zip_codes set city = 'Easaint Lawrencetown' where zip_code = 'B2Z 1T6' and
city = 'East Lawrencetown' and state = 'NS';
update zip_codes set city = 'Easaint Lawrencetown' where zip_code = 'B2Z 1V1' and
city = 'East Lawrencetown' and state = 'NS';
update zip_codes set city = 'Easaint Lawrencetown' where zip_code = 'B2Z 1V2' and
city = 'East Lawrencetown' and state = 'NS';
update zip_codes set city = 'East White Plains' where zip_code = '10604' and city
= 'West Harrison' and state = 'NY';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 1A1'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 2Y1'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 2Y2'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 2Y3'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 2Y4'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 2Y5'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 2Y6'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 2Y7'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 2Y8'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 2Y9'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 2Z1'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 2Z2'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 2Z3'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 2Z4'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 2Z5'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 2Z6'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 2Z7'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 2Z8'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 3A1'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 3A2'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 3A3'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 3A4'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 3A5'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 3A6'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 3A7'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 3A8'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 3A9'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 3B1'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 3B2'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 3B3'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 3B4'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 3B5'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 3B6'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 3B7'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 3B8'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 3C6'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 3C7'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 3C9'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 3E1'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 3E2'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 3E3'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Eel River Bar Firsain' where zip_code = 'E8C 3E4'
and city = 'Eel River Bar First Nation' and state = 'NB';
update zip_codes set city = 'Elko' where zip_code = '55020' and city = 'Elko New
Market' and state = 'MN';
update zip_codes set city = 'Elsipogtog Firsaint N' where zip_code = 'E4W 5W3'
and city = 'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Elsipogtog Firsaint N' where zip_code = 'E4W 5W4'
and city = 'Elsipogtog First Nation' and state = 'NB';
update zip_codes set city = 'Emerald Park' where zip_code = 'S4L 1A1' and city =
'Emerald Park' and state = 'SK';
update zip_codes set city = 'Emerald Park' where zip_code = 'S4L 1A2' and city =
'Emerald Park' and state = 'SK';
update zip_codes set city = 'Emerald Park' where zip_code = 'S4L 1A3' and city =
'Emerald Park' and state = 'SK';
update zip_codes set city = 'Emerald Park' where zip_code = 'S4L 1A4' and city =
'Emerald Park' and state = 'SK';
update zip_codes set city = 'Emerald Park' where zip_code = 'S4L 1A5' and city =
'Emerald Park' and state = 'SK';
update zip_codes set city = 'Emerald Park' where zip_code = 'S4L 1A6' and city =
'Emerald Park' and state = 'SK';
update zip_codes set city = 'Emerald Park' where zip_code = 'S4L 1A7' and city =
'Emerald Park' and state = 'SK';
update zip_codes set city = 'Emerald Park' where zip_code = 'S4L 1A8' and city =
'Emerald Park' and state = 'SK';
update zip_codes set city = 'Emerald Park' where zip_code = 'S4L 1A9' and city =
'Emerald Park' and state = 'SK';
update zip_codes set city = 'Emerald Park' where zip_code = 'S4L 1B1' and city =
'Emerald Park' and state = 'SK';
update zip_codes set city = 'Emerald Park' where zip_code = 'S4L 1B2' and city =
'Emerald Park' and state = 'SK';
update zip_codes set city = 'Emerald Park' where zip_code = 'S4L 1B6' and city =
'Emerald Park' and state = 'SK';
update zip_codes set city = 'Emerald Park' where zip_code = 'S4L 1B7' and city =
'Emerald Park' and state = 'SK';
update zip_codes set city = 'Emerald Park' where zip_code = 'S4L 1B8' and city =
'Emerald Park' and state = 'SK';
update zip_codes set city = 'Emerald Park' where zip_code = 'S4L 1B9' and city =
'Emerald Park' and state = 'SK';
update zip_codes set city = 'Emerald Park' where zip_code = 'S4L 1C1' and city =
'Emerald Park' and state = 'SK';
update zip_codes set city = 'Emerald Park' where zip_code = 'S4L 1C2' and city =
'Emerald Park' and state = 'SK';
update zip_codes set city = 'Emerald Park' where zip_code = 'S4L 1C3' and city =
'Emerald Park' and state = 'SK';
update zip_codes set city = 'Emerald Park' where zip_code = 'S4L 1C4' and city =
'Emerald Park' and state = 'SK';
update zip_codes set city = 'Emerald Park' where zip_code = 'S4L 1C5' and city =
'Emerald Park' and state = 'SK';
update zip_codes set city = 'Emerald Park' where zip_code = 'S4L 1C6' and city =
'Emerald Park' and state = 'SK';
update zip_codes set city = 'Emerald Park' where zip_code = 'S4L 1C7' and city =
'Emerald Park' and state = 'SK';
update zip_codes set city = 'Emerald Park' where zip_code = 'S4L 1C8' and city =
'Emerald Park' and state = 'SK';
update zip_codes set city = 'Fairbanks' where zip_code = '99702' and city =
'Eielson AFB' and state = 'AK';
update zip_codes set city = 'Fairchild A F B' where zip_code = '99011' and city =
'Fairchild Air Force Base' and state = 'WA';
update zip_codes set city = 'Fairfield Westmorland' where zip_code = 'E4K 3E7'
and city = 'Fairfield Westmorland Co' and state = 'NB';
update zip_codes set city = 'Fairfield Westmorland' where zip_code = 'E4K 3E8'
and city = 'Fairfield Westmorland Co' and state = 'NB';
update zip_codes set city = 'Fairfield Westmorland' where zip_code = 'E4K 3E9'
and city = 'Fairfield Westmorland Co' and state = 'NB';
update zip_codes set city = 'Fairfield Westmorland' where zip_code = 'E4K 3G1'
and city = 'Fairfield Westmorland Co' and state = 'NB';
update zip_codes set city = 'Fairfield Westmorland' where zip_code = 'E4K 3G2'
and city = 'Fairfield Westmorland Co' and state = 'NB';
update zip_codes set city = 'Fairfield Westmorland' where zip_code = 'E4K 3G3'
and city = 'Fairfield Westmorland Co' and state = 'NB';
update zip_codes set city = 'Fairfield Westmorland' where zip_code = 'E4K 3H9'
and city = 'Fairfield Westmorland Co' and state = 'NB';
update zip_codes set city = 'Fairfield Westmorland' where zip_code = 'E4K 3J1'
and city = 'Fairfield Westmorland Co' and state = 'NB';
update zip_codes set city = 'Fairfield Westmorland' where zip_code = 'E4K 3J2'
and city = 'Fairfield Westmorland Co' and state = 'NB';
update zip_codes set city = 'Fairfield Westmorland' where zip_code = 'E4K 3P3'
and city = 'Fairfield Westmorland Co' and state = 'NB';
update zip_codes set city = 'Fairfield Westmorland' where zip_code = 'E4K 3P4'
and city = 'Fairfield Westmorland Co' and state = 'NB';
update zip_codes set city = 'Ferland' where zip_code = 'S0H 1M0' and city =
'Ferland' and state = 'SK';
update zip_codes set city = 'Fineview' where zip_code = '13640' and city =
'Wellesley Island' and state = 'NY';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 1B2' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 1X1' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 1Y7' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 1Y8' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 1Y9' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 1Z1' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 1Z2' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 1Z3' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 1Z4' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 1Z5' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 1Z6' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 1Z8' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 1Z9' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 2T3' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 2X2' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 2X3' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 2X4' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 2X5' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 2X7' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 2X9' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 2Z3' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 2Z4' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 2Z5' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 2Z6' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 2Z7' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3E9' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3G1' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3G2' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3G3' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3G4' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3G5' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3G6' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3G7' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3G8' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3G9' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3H1' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3H2' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3H3' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3H5' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3H6' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3H7' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3H8' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3H9' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3J1' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3J2' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3J3' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3J4' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3J5' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3J7' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3J8' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3J9' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3K1' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3K2' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3K4' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3K5' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3K6' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3K7' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3L2' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3L3' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3L7' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3L8' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3M3' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3M8' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3M9' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3N1' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3N6' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 3N7' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 4H5' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 4J2' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 4J3' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 4J4' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 4J5' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 4J6' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 4J8' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 4K1' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 4K2' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 4S2' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 4V3' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Florenceville' where zip_code = 'E7L 4V6' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Foresaint Glen' where zip_code = 'E4Z 6C2' and city
= 'Forest Glen' and state = 'NB';
update zip_codes set city = 'Foresaint Glen' where zip_code = 'E4Z 6C3' and city
= 'Forest Glen' and state = 'NB';
update zip_codes set city = 'Foresaint Glen' where zip_code = 'E4Z 6C4' and city
= 'Forest Glen' and state = 'NB';
update zip_codes set city = 'Foresaint Glen' where zip_code = 'E4Z 6C5' and city
= 'Forest Glen' and state = 'NB';
update zip_codes set city = 'Foresaint Glen' where zip_code = 'E4Z 6C6' and city
= 'Forest Glen' and state = 'NB';
update zip_codes set city = 'Foresaint Glen' where zip_code = 'E4Z 6C7' and city
= 'Forest Glen' and state = 'NB';
update zip_codes set city = 'Foresaint Glen' where zip_code = 'E4Z 6C8' and city
= 'Forest Glen' and state = 'NB';
update zip_codes set city = 'Foresaint Glen' where zip_code = 'E4Z 6C9' and city
= 'Forest Glen' and state = 'NB';
update zip_codes set city = 'Foresaint Glen' where zip_code = 'E4Z 6E1' and city
= 'Forest Glen' and state = 'NB';
update zip_codes set city = 'Forestburg' where zip_code = '12777' and city =
'Forestburgh' and state = 'NY';
update zip_codes set city = 'Forresaint Station' where zip_code = 'R0K 0W0' and
city = 'Forrest Station' and state = 'MB';
update zip_codes set city = 'Fort Sam Houston' where zip_code = '78234' and city
= 'Jbsa Ft Sam Houston' and state = 'TX';
update zip_codes set city = 'Fort Worth' where zip_code = '76127' and city =
'Naval Air Station/ Jrb' and state = 'TX';
update zip_codes set city = 'Fortress Of Louisbour' where zip_code = 'B1C 2H8'
and city = 'Fortress Of Louisbourg' and state = 'NS';
update zip_codes set city = 'Fortress Of Louisbour' where zip_code = 'B1C 2L1'
and city = 'Fortress Of Louisbourg' and state = 'NS';
update zip_codes set city = 'Fortress Of Louisbour' where zip_code = 'B1C 2L2'
and city = 'Fortress Of Louisbourg' and state = 'NS';
update zip_codes set city = 'Fortress Of Louisbour' where zip_code = 'B1C 2L4'
and city = 'Fortress Of Louisbourg' and state = 'NS';
update zip_codes set city = 'French Village Kings' where zip_code = 'E5N 8B9' and
city = 'French Village Kings Co' and state = 'NB';
update zip_codes set city = 'French Village Kings' where zip_code = 'E5N 8C1' and
city = 'French Village Kings Co' and state = 'NB';
update zip_codes set city = 'French Village Kings' where zip_code = 'E5N 8C2' and
city = 'French Village Kings Co' and state = 'NB';
update zip_codes set city = 'French Village Kings' where zip_code = 'E5N 8C3' and
city = 'French Village Kings Co' and state = 'NB';
update zip_codes set city = 'French Village Kings' where zip_code = 'E5N 8C4' and
city = 'French Village Kings Co' and state = 'NB';
update zip_codes set city = 'French Village Kings' where zip_code = 'E5N 8C5' and
city = 'French Village Kings Co' and state = 'NB';
update zip_codes set city = 'French Village Kings' where zip_code = 'E5N 8C6' and
city = 'French Village Kings Co' and state = 'NB';
update zip_codes set city = 'French Village Kings' where zip_code = 'E5N 8C7' and
city = 'French Village Kings Co' and state = 'NB';
update zip_codes set city = 'Glasgow Air Base' where zip_code = '59231' and city
= 'Saint Marie' and state = 'MT';
update zip_codes set city = 'Glendale Luke A F B' where zip_code = '85309' and
city = 'Luke Air Force Base' and state = 'AZ';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1A1' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1A2' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1A3' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1A4' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1A5' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1A6' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1A7' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1A8' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1A9' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1B1' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1B2' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1B3' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1B4' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1B5' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1B6' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1B7' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1B8' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1B9' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1C1' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1C2' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1C3' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1C4' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1C5' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1C6' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1C7' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1C8' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1C9' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1E1' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1E2' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1E3' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1E4' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1E5' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1E6' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1E7' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1E8' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1E9' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1G1' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1G2' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1G3' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 1J2' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 3H2' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 3T2' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 3T4' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 3T5' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 3T7' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 3V1' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 3V2' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 3V3' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 3V4' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 3V5' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 3V6' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 3V7' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 3V9' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 3W3' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 3W5' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 3W6' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 3W9' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 3X4' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 3X5' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 3X8' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 3Y4' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 3Y5' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 3Z8' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Y 4A2' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Z 1A1' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Z 1A2' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Z 1A3' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Z 1A4' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Z 1A5' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Z 1A6' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Z 1A7' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Z 1A8' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Z 1A9' and city =
'Dsl De Grand-sault/falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Z 1A9' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Z 1B1' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Z 1B2' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Z 1B3' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Z 1G2' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Z 1G4' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Z 2H5' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Z 2H6' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls' where zip_code = 'E3Z 3G3' and city =
'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls-Grand Sau' where zip_code = 'E3Z 1G5'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls-Grand Sau' where zip_code = 'E3Z 3E7'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls-Grand Sau' where zip_code = 'E3Z 3E8'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls-Grand Sau' where zip_code = 'E3Z 3E9'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Falls-Grand Sau' where zip_code = 'E3Z 3G1'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Saint Antoine N' where zip_code = 'E4V 2Y7'
and city = 'St-antoine Nord' and state = 'NB';
update zip_codes set city = 'Grand Saint Antoine N' where zip_code = 'E4V 2Z2'
and city = 'St-antoine Nord' and state = 'NB';
update zip_codes set city = 'Grand Saint Antoine N' where zip_code = 'E4V 2Z9'
and city = 'St-antoine Nord' and state = 'NB';
update zip_codes set city = 'Grand Saint Antoine N' where zip_code = 'E4V 3A1'
and city = 'St-antoine Nord' and state = 'NB';
update zip_codes set city = 'Grand Saint Antoine N' where zip_code = 'E4V 3A2'
and city = 'St-antoine Nord' and state = 'NB';
update zip_codes set city = 'Grand Saint Antoine N' where zip_code = 'E4V 3E4'
and city = 'St-antoine Nord' and state = 'NB';
update zip_codes set city = 'Grand Saint Antoine N' where zip_code = 'E4V 3G5'
and city = 'St-antoine Nord' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 1G6'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 1K5'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 1K6'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 1L9'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 1M1'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 1M2'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 1M3'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 1M4'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 1M5'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 1M6'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 1M7'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 1M8'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 1M9'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 1N1'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2H9'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2J1'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2J2'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2J3'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2J4'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2J5'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2J6'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2J7'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2J8'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2J9'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2K1'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2K2'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2K3'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2K4'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2K5'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2K6'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2K7'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2K8'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2K9'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2L1'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2L2'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2L3'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2L4'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2L5'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2L6'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2L9'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2M1'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2M2'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2M3'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2M4'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2M5'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2M6'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2M7'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2M8'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2M9'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2N1'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2N2'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2N3'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2N4'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2N5'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2N6'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2N7'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2N8'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2N9'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2P2'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2P3'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2P4'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2P5'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2P6'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2P7'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2P8'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2P9'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2R1'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2R2'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2R4'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2R5'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2R6'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2R7'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2R8'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2R9'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2S1'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2S2'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2S3'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2S4'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2S5'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2S6'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2S7'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2S8'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2S9'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2T2'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2T3'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2T4'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2T5'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2T6'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2T7'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2T8'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2T9'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2V1'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2V2'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2V3'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2V4'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2V5'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2V6'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2V7'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2W1'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2W2'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2W3'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2W4'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2W5'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2W6'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2W7'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2W8'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2W9'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2X1'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2X2'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2X3'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2X4'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2X5'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2X6'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2X7'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2X8'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2X9'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2Y2'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2Y4'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2Y6'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2Y7'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2Y9'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2Z1'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2Z2'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2Z3'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2Z4'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2Z5'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2Z6'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2Z7'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2Z8'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 2Z9'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 3A1'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 3A2'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 3A3'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 3A4'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 3A6'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 3A7'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 3A8'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 3A9'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 3B1'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 3B2'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 3B3'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 3B4'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 3B6'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 3B7'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 3B8'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 3B9'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 3C1'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 3C3'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 3C4'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 3C5'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 3C6'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 3C7'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 3C8'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 3C9'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 3E1'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Grand Sault-Grand Fal' where zip_code = 'E3Z 3E2'
and city = 'Grand-sault/grand Falls' and state = 'NB';
update zip_codes set city = 'Greenfield' where zip_code = 'E7L 4V4' and city =
'Florenceville-bristol' and state = 'NB';
update zip_codes set city = 'Grenville' where zip_code = 'J0V 1B0' and city =
'Grenville-sur-la-rouge' and state = 'QC';
update zip_codes set city = 'Haut Riviere Du Porta' where zip_code = 'E9H 1N9'
and city = 'Haut-riviere-du-portage' and state = 'NB';
update zip_codes set city = 'Haut Riviere Du Porta' where zip_code = 'E9H 1P1'
and city = 'Haut-riviere-du-portage' and state = 'NB';
update zip_codes set city = 'Haut Riviere Du Porta' where zip_code = 'E9H 1P2'
and city = 'Haut-riviere-du-portage' and state = 'NB';
update zip_codes set city = 'Haut Riviere Du Porta' where zip_code = 'E9H 1P3'
and city = 'Haut-riviere-du-portage' and state = 'NB';
update zip_codes set city = 'Haut Riviere Du Porta' where zip_code = 'E9H 1P4'
and city = 'Haut-riviere-du-portage' and state = 'NB';
update zip_codes set city = 'Haut Riviere Du Porta' where zip_code = 'E9H 1P5'
and city = 'Haut-riviere-du-portage' and state = 'NB';
update zip_codes set city = 'Haut Riviere Du Porta' where zip_code = 'E9H 1P6'
and city = 'Haut-riviere-du-portage' and state = 'NB';
update zip_codes set city = 'Haut Riviere Du Porta' where zip_code = 'E9H 1P7'
and city = 'Haut-riviere-du-portage' and state = 'NB';
update zip_codes set city = 'Haut Riviere Du Porta' where zip_code = 'E9H 1P8'
and city = 'Haut-riviere-du-portage' and state = 'NB';
update zip_codes set city = 'Haut Riviere Du Porta' where zip_code = 'E9H 1P9'
and city = 'Haut-riviere-du-portage' and state = 'NB';
update zip_codes set city = 'Haut Riviere Du Porta' where zip_code = 'E9H 1R1'
and city = 'Haut-riviere-du-portage' and state = 'NB';
update zip_codes set city = 'Haut Riviere Du Porta' where zip_code = 'E9H 1R2'
and city = 'Haut-riviere-du-portage' and state = 'NB';
update zip_codes set city = 'Haut Riviere Du Porta' where zip_code = 'E9H 1R3'
and city = 'Haut-riviere-du-portage' and state = 'NB';
update zip_codes set city = 'Haut Riviere Du Porta' where zip_code = 'E9H 1R4'
and city = 'Haut-riviere-du-portage' and state = 'NB';
update zip_codes set city = 'Haut Riviere Du Porta' where zip_code = 'E9H 1R5'
and city = 'Haut-riviere-du-portage' and state = 'NB';
update zip_codes set city = 'Haut Riviere Du Porta' where zip_code = 'E9H 1R6'
and city = 'Haut-riviere-du-portage' and state = 'NB';
update zip_codes set city = 'Haut Riviere Du Porta' where zip_code = 'E9H 1R7'
and city = 'Haut-riviere-du-portage' and state = 'NB';
update zip_codes set city = 'Haut Riviere Du Porta' where zip_code = 'E9H 1R8'
and city = 'Haut-riviere-du-portage' and state = 'NB';
update zip_codes set city = 'Haut Riviere Du Porta' where zip_code = 'E9H 1R9'
and city = 'Haut-riviere-du-portage' and state = 'NB';
update zip_codes set city = 'Haut Riviere Du Porta' where zip_code = 'E9H 1S1'
and city = 'Haut-riviere-du-portage' and state = 'NB';
update zip_codes set city = 'Haut Riviere Du Porta' where zip_code = 'E9H 1S2'
and city = 'Haut-riviere-du-portage' and state = 'NB';
update zip_codes set city = 'Haut Riviere Du Porta' where zip_code = 'E9H 1S3'
and city = 'Haut-riviere-du-portage' and state = 'NB';
update zip_codes set city = 'Haut Riviere Du Porta' where zip_code = 'E9H 1S4'
and city = 'Haut-riviere-du-portage' and state = 'NB';
update zip_codes set city = 'Haut Riviere Du Porta' where zip_code = 'E9H 1S5'
and city = 'Haut-riviere-du-portage' and state = 'NB';
update zip_codes set city = 'Haut Riviere Du Porta' where zip_code = 'E9H 1S6'
and city = 'Haut-riviere-du-portage' and state = 'NB';
update zip_codes set city = 'Haut Riviere Du Porta' where zip_code = 'E9H 1S7'
and city = 'Haut-riviere-du-portage' and state = 'NB';
update zip_codes set city = 'Haut Riviere Du Porta' where zip_code = 'E9H 1S8'
and city = 'Haut-riviere-du-portage' and state = 'NB';
update zip_codes set city = 'Haut Riviere Du Porta' where zip_code = 'E9H 1V5'
and city = 'Haut-riviere-du-portage' and state = 'NB';
update zip_codes set city = 'Haut Riviere Du Porta' where zip_code = 'E9H 2A4'
and city = 'Haut-riviere-du-portage' and state = 'NB';
update zip_codes set city = 'Haut Riviere Du Porta' where zip_code = 'E9H 2A5'
and city = 'Haut-riviere-du-portage' and state = 'NB';
update zip_codes set city = 'Haut Riviere Du Porta' where zip_code = 'E9H 2B4'
and city = 'Haut-riviere-du-portage' and state = 'NB';
update zip_codes set city = 'Haut Riviere Du Porta' where zip_code = 'E9H 2B5'
and city = 'Haut-riviere-du-portage' and state = 'NB';
update zip_codes set city = 'Hawkestone' where zip_code = 'L0L 1T0' and city =
'Oro-medonte' and state = 'ON';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 1X8'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 1X9'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 1Y1'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 1Y2'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 1Y3'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 1Y4'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 1Y5'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 1Y6'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 1Y7'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 1Y8'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 1Y9'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 1Z1'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 1Z2'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 1Z3'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 1Z4'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 1Z5'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 1Z6'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 1Z7'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 1Z8'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 1Z9'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2A1'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2A2'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2A3'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2A4'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2A5'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2A6'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2A7'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2A8'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2A9'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2B1'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2B2'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2B3'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2B4'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2B5'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2B6'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2B7'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2B8'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2B9'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2C1'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2C2'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2C3'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2C4'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2C5'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2C6'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2C7'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2C8'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2C9'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2E1'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2E2'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2E3'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2E4'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2E5'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2E6'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2E7'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2E8'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2E9'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2G1'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2G2'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2G3'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2G4'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2G5'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2G6'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2G7'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2G8'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2G9'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2H1'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2H2'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2H3'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2H4'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2H5'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2H6'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2H7'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 2H8'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 4G2'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Head Of Saint Margare' where zip_code = 'B3Z 4G3'
and city = 'Head Of St Margarets Bay' and state = 'NS';
update zip_codes set city = 'Hilldale' where zip_code = '33634' and city = 'Time
CS BRM Unique' and state = 'FL';
update zip_codes set city = 'Hobbema' where zip_code = 'T0C 1N0' and city =
'Maskwacis' and state = 'AB';
update zip_codes set city = 'Holbrook' where zip_code = '86028' and city =
'Petrified Forest Natl Pk' and state = 'AZ';
update zip_codes set city = 'Holloman A F B' where zip_code = '88330' and city =
'Holloman Air Force Base' and state = 'NM';
update zip_codes set city = 'Hope' where zip_code = '99604' and city = 'Hooper
Bay' and state = 'AK';
update zip_codes set city = 'Hot Springs National Par' where zip_code = '71901'
and city = 'Hot Springs National Park' and state = 'AR';
update zip_codes set city = 'Hot Springs National Par' where zip_code = '71902'
and city = 'Hot Springs National Park' and state = 'AR';
update zip_codes set city = 'Hot Springs National Par' where zip_code = '71903'
and city = 'Hot Springs National Park' and state = 'AR';
update zip_codes set city = 'Hot Springs National Par' where zip_code = '71913'
and city = 'Hot Springs National Park' and state = 'AR';
update zip_codes set city = 'Hot Springs National Par' where zip_code = '71914'
and city = 'Hot Springs National Park' and state = 'AR';
update zip_codes set city = 'Ile Aux Noix' where zip_code = 'J0J 1G0' and city =
'Saint-paul-de-l''ile-aux-noix' and state = 'QC';
update zip_codes set city = 'Island Lake' where zip_code = 'S0M 3G0' and city =
'Island Lake' and state = 'SK';
update zip_codes set city = 'Jacksonville' where zip_code = '28545' and city =
'Mccutcheon Field' and state = 'NC';
update zip_codes set city = 'Johnson Settlement Ch' where zip_code = 'E5A 1B1'
and city = 'Johnson Settlement Charlotte C' and state = 'NB';
update zip_codes set city = 'Johnson Settlement Ch' where zip_code = 'E5A 1B3'
and city = 'Johnson Settlement Charlotte C' and state = 'NB';
update zip_codes set city = 'Johnson Settlement Ch' where zip_code = 'E5A 1B4'
and city = 'Johnson Settlement Charlotte C' and state = 'NB';
update zip_codes set city = 'Johnson Settlement Ch' where zip_code = 'E5A 1L4'
and city = 'Johnson Settlement Charlotte C' and state = 'NB';
update zip_codes set city = 'Johnson Settlement Ch' where zip_code = 'E5A 1R8'
and city = 'Johnson Settlement Charlotte C' and state = 'NB';
update zip_codes set city = 'Johnson Settlement Ch' where zip_code = 'E5A 1R9'
and city = 'Johnson Settlement Charlotte C' and state = 'NB';
update zip_codes set city = 'Johnson Settlement Ch' where zip_code = 'E5A 1S1'
and city = 'Johnson Settlement Charlotte C' and state = 'NB';
update zip_codes set city = 'Johnson Settlement Ch' where zip_code = 'E5A 1S2'
and city = 'Johnson Settlement Charlotte C' and state = 'NB';
update zip_codes set city = 'Johnson Settlement Ch' where zip_code = 'E5A 1S3'
and city = 'Johnson Settlement Charlotte C' and state = 'NB';
update zip_codes set city = 'Johnson Settlement Ch' where zip_code = 'E5A 1S4'
and city = 'Johnson Settlement Charlotte C' and state = 'NB';
update zip_codes set city = 'Johnson Settlement Ch' where zip_code = 'E5A 1S5'
and city = 'Johnson Settlement Charlotte C' and state = 'NB';
update zip_codes set city = 'Johnson Settlement Ch' where zip_code = 'E5A 3B5'
and city = 'Johnson Settlement Charlotte C' and state = 'NB';
update zip_codes set city = 'Johnson Settlement Ch' where zip_code = 'E5A 3B6'
and city = 'Johnson Settlement Charlotte C' and state = 'NB';
update zip_codes set city = 'Johnson Settlement Ch' where zip_code = 'E5A 3E2'
and city = 'Johnson Settlement Charlotte C' and state = 'NB';
update zip_codes set city = 'Johnson Settlement Yo' where zip_code = 'E6H 1A6'
and city = 'Johnson Settlement York Co' and state = 'NB';
update zip_codes set city = 'Johnson Settlement Yo' where zip_code = 'E6H 1A7'
and city = 'Johnson Settlement York Co' and state = 'NB';
update zip_codes set city = 'Johnson Settlement Yo' where zip_code = 'E6H 1A8'
and city = 'Johnson Settlement York Co' and state = 'NB';
update zip_codes set city = 'Johnson Settlement Yo' where zip_code = 'E6H 1B6'
and city = 'Johnson Settlement York Co' and state = 'NB';
update zip_codes set city = 'Johnson Settlement Yo' where zip_code = 'E6H 1B7'
and city = 'Johnson Settlement York Co' and state = 'NB';
update zip_codes set city = 'Kaibito' where zip_code = '86053' and city =
'Kaibeto' and state = 'AZ';
update zip_codes set city = 'Katevale' where zip_code = 'J0B 1W0' and city =
'Sainte-catherine-de-hatley' and state = 'QC';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 1K2' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 1K8' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 1N1' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3K5' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3K6' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3K7' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3K9' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3L1' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3L2' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3L3' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3L4' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3L5' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3L6' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3L7' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3L8' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3L9' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3M1' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3M2' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3M3' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3M4' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3M5' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3M6' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3M7' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3M9' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3N1' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3N2' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3N3' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3N4' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3N5' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3N6' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3N7' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3N8' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3N9' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3P1' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3P2' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3P3' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3P4' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3P5' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3P6' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3P7' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3P8' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3P9' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3R1' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3R2' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 3R3' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 4L2' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 4T3' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 4T4' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Keirsteadville' where zip_code = 'E5T 4Y5' and city
= 'Kiersteadville' and state = 'NB';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1A3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1A4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1A5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1A7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1A8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1A9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1B4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1B5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1B6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1B7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1B8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1B9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1C1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1C2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1C3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1C4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1C5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1C6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1C7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1C8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1C9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1E1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1E2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1E3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1E4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1E5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1E6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1G1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1G2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1G3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1G4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1G5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1G6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1G7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1G8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1G9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1H1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1H2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1H3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1H4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1H5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1H6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1H7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1H8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1H9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1J1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1J2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1J3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1J5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1J6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1J7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1J8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1J9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1K1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1K2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1K3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1K4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1K5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1K6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1K7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1K8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1K9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1L1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1L2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1L3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1L4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1L5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1L6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1L7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1L8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1L9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1M1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1M2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1M3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1M4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1M5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1M6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1M7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1M8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1M9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1N1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1N2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1N3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1N4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1N5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1N6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1N7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1N8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1N9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1P1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1P2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1P3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1P4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1P5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1P6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1P7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1P8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1P9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1R1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1R2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1R3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1R4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1R5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1R6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1R7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1R8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1R9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1S1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1S2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1S3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1S4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1S5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1S6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1S8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1S9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1T1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1T2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1T3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1T4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1T5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1T6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1T7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1T8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1T9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1V1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1V2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1V3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1V4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1V5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1V6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1V7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1V8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1V9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1W1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1W2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1W3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1W4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1W5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1W6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1W7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1W8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1W9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1X1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1X3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1X4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1X5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1X6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1X7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1X8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1X9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1Y1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1Y2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1Y3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1Y4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1Y5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1Y6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1Y7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1Y8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1Y9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1Z1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1Z2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1Z3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1Z4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1Z5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1Z6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1Z7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1Z8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 1Z9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2A1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2A2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2A3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2A4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2A5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2A6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2A7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2A9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2B1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2B2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2B3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2B4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2B5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2B6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2B7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2B8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2B9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2C1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2C2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2C3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2C4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2C5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2C6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2C7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2C8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2C9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2E1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2E2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2E3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2E4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2E5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2E6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2E7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2E8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2E9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2G1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2G2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2G3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2G4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2G5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2G6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2G7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2G8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2G9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2H1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2H2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2H3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2H5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2H6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2H7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2H8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2H9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2J1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2J2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2J3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2J5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2J6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2J8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2J9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2K1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2K2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2K3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2K4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2K5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2K6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2K7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2K8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2K9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2L1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2L2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2L3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2L4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2L5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2L6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2L7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2L8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2L9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2M1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2M2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2M3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2M4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2M5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2M6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2M7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2M8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2M9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2N1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2N3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2N4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2N5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2N6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2N7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2N8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2N9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2P1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2P7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2R1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2R7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2S2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2S5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2S7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2S8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2S9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2T1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2T2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2T3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2T4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2T5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2T6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2T7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2T9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2V1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2V2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2V3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2V4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2V5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2V6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2V7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2V8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2V9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2W1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2W4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2W5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2W7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2W8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2W9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2X1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2X2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2X6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2X7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2X8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2X9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2Y2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2Y3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2Y4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2Y5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2Y6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2Y9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2Z3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2Z4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 2Z7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3A2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3A3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3A5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3A6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3A7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3A8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3A9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3B1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3B2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3B3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3B7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3C2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3C4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3E2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3E4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3E5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3E6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3E7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3E8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3E9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3G1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3G3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3G4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3G6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3G7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3G9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3H4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3H5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3H6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3H7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3H9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3J5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3J7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3J8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3J9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3K2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3K3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3K4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3K5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3K7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3K8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3K9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3L1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3L2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3L3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3L4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3L5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3L6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3L7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3M1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3M2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3M4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3M6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3M7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3N1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3N2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3N3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3N4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3N5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3N6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3N7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3N8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3P1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3P2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3P3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3P4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3P5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3P6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3P7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3P9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3R1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3R2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3R3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3R4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3R7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3S1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3S2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3T6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3T7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3W9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3X4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3X5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3X6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3X8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3X9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3Y1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3Y2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3Y4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3Y5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3Y8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3Y9' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3Z1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3Z2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3Z3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3Z4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3Z5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3Z6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3Z7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 3Z8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 4A1' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 4A2' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 4A3' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 4A4' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 4A5' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 4A6' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 4A7' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kelowna' where zip_code = 'V1Z 4A8' and city = 'West
Kelowna' and state = 'BC';
update zip_codes set city = 'Kings Canyon National Pa' where zip_code = '93633'
and city = 'Kings Canyon National Pk' and state = 'CA';
update zip_codes set city = 'Kings Landing Histori' where zip_code = 'E6K 3W3'
and city = 'Kings Landing Historical Settl' and state = 'NB';
update zip_codes set city = 'Kingsclear Firsaint N' where zip_code = 'E3E 1H7'
and city = 'Kingsclear First Nation' and state = 'NB';
update zip_codes set city = 'Kingsclear Firsaint N' where zip_code = 'E3E 1H8'
and city = 'Kingsclear First Nation' and state = 'NB';
update zip_codes set city = 'Kingsclear Firsaint N' where zip_code = 'E3E 1H9'
and city = 'Kingsclear First Nation' and state = 'NB';
update zip_codes set city = 'Kingsclear Firsaint N' where zip_code = 'E3E 1J1'
and city = 'Kingsclear First Nation' and state = 'NB';
update zip_codes set city = 'Kingsclear Firsaint N' where zip_code = 'E3E 1J2'
and city = 'Kingsclear First Nation' and state = 'NB';
update zip_codes set city = 'Kingsclear Firsaint N' where zip_code = 'E3E 1J3'
and city = 'Kingsclear First Nation' and state = 'NB';
update zip_codes set city = 'Kingsclear Firsaint N' where zip_code = 'E3E 1J4'
and city = 'Kingsclear First Nation' and state = 'NB';
update zip_codes set city = 'Kingsclear Firsaint N' where zip_code = 'E3E 1J5'
and city = 'Kingsclear First Nation' and state = 'NB';
update zip_codes set city = 'Kingsclear Firsaint N' where zip_code = 'E3E 1J6'
and city = 'Kingsclear First Nation' and state = 'NB';
update zip_codes set city = 'Kingsclear Firsaint N' where zip_code = 'E3E 1J7'
and city = 'Kingsclear First Nation' and state = 'NB';
update zip_codes set city = 'Kingsclear Firsaint N' where zip_code = 'E3E 1J8'
and city = 'Kingsclear First Nation' and state = 'NB';
update zip_codes set city = 'Kingsclear Firsaint N' where zip_code = 'E3E 1K1'
and city = 'Kingsclear First Nation' and state = 'NB';
update zip_codes set city = 'Kingsclear Firsaint N' where zip_code = 'E3E 1K2'
and city = 'Kingsclear First Nation' and state = 'NB';
update zip_codes set city = 'Kingsclear Firsaint N' where zip_code = 'E3E 1K3'
and city = 'Kingsclear First Nation' and state = 'NB';
update zip_codes set city = 'Kingsclear Firsaint N' where zip_code = 'E3E 1K5'
and city = 'Kingsclear First Nation' and state = 'NB';
update zip_codes set city = 'Kingsclear Firsaint N' where zip_code = 'E3E 1K6'
and city = 'Kingsclear First Nation' and state = 'NB';
update zip_codes set city = 'Kingsclear Firsaint N' where zip_code = 'E3E 1K7'
and city = 'Kingsclear First Nation' and state = 'NB';
update zip_codes set city = 'Kingsclear Firsaint N' where zip_code = 'E3E 1K8'
and city = 'Kingsclear First Nation' and state = 'NB';
update zip_codes set city = 'Kingsclear Firsaint N' where zip_code = 'E3E 1K9'
and city = 'Kingsclear First Nation' and state = 'NB';
update zip_codes set city = 'Kingsclear Firsaint N' where zip_code = 'E3E 1L6'
and city = 'Kingsclear First Nation' and state = 'NB';
update zip_codes set city = 'Kingsclear Firsaint N' where zip_code = 'E3E 2H6'
and city = 'Kingsclear First Nation' and state = 'NB';
update zip_codes set city = 'Kingsclear Firsaint N' where zip_code = 'E3E 2L3'
and city = 'Kingsclear First Nation' and state = 'NB';
update zip_codes set city = 'Kouchibouguac Nationa' where zip_code = 'E4X 2P1'
and city = 'Kouchibouguac National Park' and state = 'NB';
update zip_codes set city = 'L''Ascension De Notre' where zip_code = 'G0W 1Y0'
and city = 'L''ascension-de-notre-seigneur' and state = 'QC';
update zip_codes set city = 'L''Ile Du Grand Calume' where zip_code = 'J0X 1J0'
and city = 'Ile Du Grand-calumet' and state = 'QC';
update zip_codes set city = 'L''Ile Perrot' where zip_code = 'J7V 9S5' and city =
'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Lake Jem' where zip_code = '32745' and city = 'Mid
Florida' and state = 'FL';
update zip_codes set city = 'Lake Wales' where zip_code = '33867' and city =
'River Ranch' and state = 'FL';
update zip_codes set city = 'Little Harbour Easain' where zip_code = 'A0B 2H0'
and city = 'Little Harbour East Pb' and state = 'NL';
update zip_codes set city = 'Little River Albert C' where zip_code = 'E4J 1C2'
and city = 'Little River Albert Co' and state = 'NB';
update zip_codes set city = 'Little River Albert C' where zip_code = 'E4J 1C3'
and city = 'Little River Albert Co' and state = 'NB';
update zip_codes set city = 'Little River Albert C' where zip_code = 'E4J 1N8'
and city = 'Little River Albert Co' and state = 'NB';
update zip_codes set city = 'Little River Albert C' where zip_code = 'E4J 1N9'
and city = 'Little River Albert Co' and state = 'NB';
update zip_codes set city = 'Little River Albert C' where zip_code = 'E4J 1P1'
and city = 'Little River Albert Co' and state = 'NB';
update zip_codes set city = 'Little River Albert C' where zip_code = 'E4J 1P2'
and city = 'Little River Albert Co' and state = 'NB';
update zip_codes set city = 'Little River Albert C' where zip_code = 'E4J 1P3'
and city = 'Little River Albert Co' and state = 'NB';
update zip_codes set city = 'Little River Albert C' where zip_code = 'E4J 1P4'
and city = 'Little River Albert Co' and state = 'NB';
update zip_codes set city = 'Little River Albert C' where zip_code = 'E4J 1P5'
and city = 'Little River Albert Co' and state = 'NB';
update zip_codes set city = 'Little River Albert C' where zip_code = 'E4J 1P6'
and city = 'Little River Albert Co' and state = 'NB';
update zip_codes set city = 'Little River Albert C' where zip_code = 'E4J 1P7'
and city = 'Little River Albert Co' and state = 'NB';
update zip_codes set city = 'Little River Albert C' where zip_code = 'E4J 1P8'
and city = 'Little River Albert Co' and state = 'NB';
update zip_codes set city = 'Little River Albert C' where zip_code = 'E4J 1R1'
and city = 'Little River Albert Co' and state = 'NB';
update zip_codes set city = 'Little River Albert C' where zip_code = 'E4J 1R2'
and city = 'Little River Albert Co' and state = 'NB';
update zip_codes set city = 'Little River Albert C' where zip_code = 'E4J 1R3'
and city = 'Little River Albert Co' and state = 'NB';
update zip_codes set city = 'Little River Albert C' where zip_code = 'E4J 1R4'
and city = 'Little River Albert Co' and state = 'NB';
update zip_codes set city = 'Little River Albert C' where zip_code = 'E4J 1R6'
and city = 'Little River Albert Co' and state = 'NB';
update zip_codes set city = 'Little River Albert C' where zip_code = 'E4J 1R7'
and city = 'Little River Albert Co' and state = 'NB';
update zip_codes set city = 'Little River Albert C' where zip_code = 'E4J 1R8'
and city = 'Little River Albert Co' and state = 'NB';
update zip_codes set city = 'Little River Albert C' where zip_code = 'E4J 1R9'
and city = 'Little River Albert Co' and state = 'NB';
update zip_codes set city = 'Little River Albert C' where zip_code = 'E4J 1S1'
and city = 'Little River Albert Co' and state = 'NB';
update zip_codes set city = 'Little River Albert C' where zip_code = 'E4J 1S2'
and city = 'Little River Albert Co' and state = 'NB';
update zip_codes set city = 'Little River Albert C' where zip_code = 'E4J 2E2'
and city = 'Little River Albert Co' and state = 'NB';
update zip_codes set city = 'Little River Albert C' where zip_code = 'E4J 3E9'
and city = 'Little River Albert Co' and state = 'NB';
update zip_codes set city = 'Little River Albert C' where zip_code = 'E4J 3Z6'
and city = 'Little River Albert Co' and state = 'NB';
update zip_codes set city = 'Little River Gloucest' where zip_code = 'E2A 6M6'
and city = 'Little River Gloucester Co' and state = 'NB';
update zip_codes set city = 'Little River Gloucest' where zip_code = 'E2A 6M7'
and city = 'Little River Gloucester Co' and state = 'NB';
update zip_codes set city = 'Little River Gloucest' where zip_code = 'E2A 6M8'
and city = 'Little River Gloucester Co' and state = 'NB';
update zip_codes set city = 'Little River Gloucest' where zip_code = 'E2A 6M9'
and city = 'Little River Gloucester Co' and state = 'NB';
update zip_codes set city = 'Little Rock A F B' where zip_code = '72099' and city
= 'Little Rock Air Force Base' and state = 'AR';
update zip_codes set city = 'Little Salmon River W' where zip_code = 'E4E 5R6'
and city = 'Little Salmon River West' and state = 'NB';
update zip_codes set city = 'Long Settlement Kings' where zip_code = 'E4E 5X5'
and city = 'Long Settlement Kings Co' and state = 'NB';
update zip_codes set city = 'Mackenzie Sub 1' where zip_code = 'V0J 3N0' and city
= 'Tsay Keh Dene' and state = 'BC';
update zip_codes set city = 'Madawaska Maliseet Fr' where zip_code = 'E7C 1W4'
and city = 'Madawaska Maliseet Frst Nation' and state = 'NB';
update zip_codes set city = 'Madawaska Maliseet Fr' where zip_code = 'E7C 1W5'
and city = 'Madawaska Maliseet Frst Nation' and state = 'NB';
update zip_codes set city = 'Madawaska Maliseet Fr' where zip_code = 'E7C 1W6'
and city = 'Madawaska Maliseet Frst Nation' and state = 'NB';
update zip_codes set city = 'Madawaska Maliseet Fr' where zip_code = 'E7C 1W7'
and city = 'Madawaska Maliseet Frst Nation' and state = 'NB';
update zip_codes set city = 'Madawaska Maliseet Fr' where zip_code = 'E7C 1W8'
and city = 'Madawaska Maliseet Frst Nation' and state = 'NB';
update zip_codes set city = 'Madawaska Maliseet Fr' where zip_code = 'E7C 1W9'
and city = 'Madawaska Maliseet Frst Nation' and state = 'NB';
update zip_codes set city = 'Madawaska Maliseet Fr' where zip_code = 'E7C 1X1'
and city = 'Madawaska Maliseet Frst Nation' and state = 'NB';
update zip_codes set city = 'Madawaska Maliseet Fr' where zip_code = 'E7C 1X2'
and city = 'Madawaska Maliseet Frst Nation' and state = 'NB';
update zip_codes set city = 'Madawaska Maliseet Fr' where zip_code = 'E7C 1X3'
and city = 'Madawaska Maliseet Frst Nation' and state = 'NB';
update zip_codes set city = 'Madawaska Maliseet Fr' where zip_code = 'E7C 3C5'
and city = 'Madawaska Maliseet Frst Nation' and state = 'NB';
update zip_codes set city = 'Madawaska Maliseet Fr' where zip_code = 'E7C 3G3'
and city = 'Madawaska Maliseet Frst Nation' and state = 'NB';
update zip_codes set city = 'Marchand' where zip_code = 'J0T 1T0' and city =
'Riviere-rouge' and state = 'QC';
update zip_codes set city = 'Mc Callum' where zip_code = 'A0H 2J0' and city =
'Mccallum' and state = 'NL';
update zip_codes set city = 'Mc Cordsville' where zip_code = '46055' and city =
'McCordsville' and state = 'IN';
update zip_codes set city = 'Mc Lean' where zip_code = '22103' and city = 'West
Mclean' and state = 'VA';
update zip_codes set city = 'Medicine Hat' where zip_code = 'T1A 8N4' and city =
'Veinerville' and state = 'AB';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1A1'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1A2'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1A3'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1A4'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1A5'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1A6'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1A7'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1A8'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1A9'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1B1'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1B2'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1B3'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1B4'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1B5'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1B6'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1B7'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1B8'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1B9'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1C1'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1C2'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1C3'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1C4'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1C5'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1C6'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1C7'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1C8'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1C9'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1E1'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1E2'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1E3'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1E4'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1E5'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1E6'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1E7'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1E8'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1E9'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1G1'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1G2'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1G3'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1G4'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1G5'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1G6'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1G7'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1G8'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1G9'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1H1'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1H2'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1H3'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1H4'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1H5'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1H6'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1H7'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1H8'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1H9'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1J1'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1J2'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1J3'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1J4'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1J5'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1J6'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1J7'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1J8'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1J9'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1K1'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1K2'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1K3'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1K4'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1K5'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1K6'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1K7'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1K8'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1K9'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1L1'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1L2'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1L3'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1L4'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1L5'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1L6'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1L7'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1L8'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1L9'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1M1'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1M2'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1M3'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1M4'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1M5'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1M6'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1M7'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1M8'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1M9'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1N1'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1N2'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1N3'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1N4'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1N5'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1N6'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1N7'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1N8'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1N9'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1P1'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1P2'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1P3'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1P4'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1P5'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1P6'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1P7'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1P8'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1P9'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1R1'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1R2'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1R3'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1R4'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1R5'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1R6'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1R7'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1R8'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1R9'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1S1'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1S2'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1S3'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1S4'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1S5'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1S6'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1S7'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1S8'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1S9'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1T1'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1T2'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1T3'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1T4'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1T5'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1T6'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1T7'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1T8'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1T9'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1V1'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1V2'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1V3'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1V4'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1V5'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1V6'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1V7'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1V8'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1V9'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1W1'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1W2'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1W3'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1W4'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1W5'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1W6'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1W7'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1W8'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1W9'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1X1'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1X2'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1X3'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1X4'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1X5'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1X6'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1X7'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1X8'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1X9'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1Y1'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1Y2'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1Y3'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1Y4'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1Y5'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1Y6'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1Y7'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1Y8'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1Y9'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1Z1'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1Z2'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1Z3'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1Z4'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1Z5'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1Z6'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1Z7'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1Z8'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 1Z9'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2A1'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2A2'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2A3'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2A4'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2A5'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2A6'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2A7'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2A8'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2A9'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2B1'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2B2'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2B3'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2B4'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2B5'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2B6'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2B7'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2B8'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2B9'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2C1'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2C2'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2C3'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2C4'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2C5'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2C6'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2C7'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2C8'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2C9'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2E1'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2E2'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2E3'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2E4'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2E5'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2E6'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2E7'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2E8'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2E9'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2G1'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2G2'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2G3'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2G4'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2G5'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2G6'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2G7'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2G8'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2G9'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2H1'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2H2'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2H3'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2H4'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2H5'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2H6'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2H7'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2H8'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2H9'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2J1'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2J3'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2J4'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2J5'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2J6'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2J7'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2J8'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2J9'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2K1'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2K2'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2K3'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2K4'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2K5'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2K6'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2K7'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2K8'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2K9'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2L1'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Metabetchouan Lac A L' where zip_code = 'G8G 2L2'
and city = 'Metabetchouan-lac-a-la-croix' and state = 'QC';
update zip_codes set city = 'Middletown' where zip_code = '95467' and city =
'Hidden Valley Lake' and state = 'CA';
update zip_codes set city = 'Montcerf' where zip_code = 'J0W 1N0' and city =
'Montcerf-lytton' and state = 'QC';
update zip_codes set city = 'Morinville' where zip_code = 'T8R 1N1' and city =
'Sturgeon County' and state = 'AB';
update zip_codes set city = 'Morinville' where zip_code = 'T8R 1N2' and city =
'Sturgeon County' and state = 'AB';
update zip_codes set city = 'Morinville' where zip_code = 'T8R 1N3' and city =
'Sturgeon County' and state = 'AB';
update zip_codes set city = 'Morinville' where zip_code = 'T8R 1N4' and city =
'Sturgeon County' and state = 'AB';
update zip_codes set city = 'Morinville' where zip_code = 'T8R 1N5' and city =
'Sturgeon County' and state = 'AB';
update zip_codes set city = 'Morinville' where zip_code = 'T8R 1N6' and city =
'Sturgeon County' and state = 'AB';
update zip_codes set city = 'Morinville' where zip_code = 'T8R 1N7' and city =
'Sturgeon County' and state = 'AB';
update zip_codes set city = 'Morinville' where zip_code = 'T8R 1N8' and city =
'Sturgeon County' and state = 'AB';
update zip_codes set city = 'Morinville' where zip_code = 'T8R 1N9' and city =
'Sturgeon County' and state = 'AB';
update zip_codes set city = 'Morinville' where zip_code = 'T8R 1P1' and city =
'Sturgeon County' and state = 'AB';
update zip_codes set city = 'Morinville' where zip_code = 'T8R 1P2' and city =
'Sturgeon County' and state = 'AB';
update zip_codes set city = 'Morinville' where zip_code = 'T8R 1P3' and city =
'Sturgeon County' and state = 'AB';
update zip_codes set city = 'Mount Clemens' where zip_code = '48045' and city =
'Harrison Township' and state = 'MI';
update zip_codes set city = 'Mulhurst' where zip_code = 'T0C 2C0' and city =
'Mulhurst Bay' and state = 'AB';
update zip_codes set city = 'N S T L' where zip_code = '39529' and city =
'Stennis Space Center' and state = 'MS';
update zip_codes set city = 'New Bandon Gloucester' where zip_code = 'E2A 5P4'
and city = 'New Bandon Gloucester Co' and state = 'NB';
update zip_codes set city = 'New Bandon Gloucester' where zip_code = 'E2A 5P5'
and city = 'New Bandon Gloucester Co' and state = 'NB';
update zip_codes set city = 'New Bandon Gloucester' where zip_code = 'E2A 5P6'
and city = 'New Bandon Gloucester Co' and state = 'NB';
update zip_codes set city = 'New Bandon Gloucester' where zip_code = 'E2A 5P7'
and city = 'New Bandon Gloucester Co' and state = 'NB';
update zip_codes set city = 'New Bandon Gloucester' where zip_code = 'E2A 5P9'
and city = 'New Bandon Gloucester Co' and state = 'NB';
update zip_codes set city = 'New Bandon Gloucester' where zip_code = 'E2A 5R1'
and city = 'New Bandon Gloucester Co' and state = 'NB';
update zip_codes set city = 'New Bandon Gloucester' where zip_code = 'E2A 5R2'
and city = 'New Bandon Gloucester Co' and state = 'NB';
update zip_codes set city = 'New Bandon Gloucester' where zip_code = 'E2A 5R3'
and city = 'New Bandon Gloucester Co' and state = 'NB';
update zip_codes set city = 'New Bandon Gloucester' where zip_code = 'E2A 5R4'
and city = 'New Bandon Gloucester Co' and state = 'NB';
update zip_codes set city = 'New Bandon Northumb C' where zip_code = 'E9C 1J8'
and city = 'New Bandon Northumb Co' and state = 'NB';
update zip_codes set city = 'New Bandon Northumb C' where zip_code = 'E9C 2A3'
and city = 'New Bandon Northumb Co' and state = 'NB';
update zip_codes set city = 'New Bandon Northumb C' where zip_code = 'E9C 2A4'
and city = 'New Bandon Northumb Co' and state = 'NB';
update zip_codes set city = 'New Bandon Northumb C' where zip_code = 'E9C 2A5'
and city = 'New Bandon Northumb Co' and state = 'NB';
update zip_codes set city = 'New Bandon Northumb C' where zip_code = 'E9C 2A6'
and city = 'New Bandon Northumb Co' and state = 'NB';
update zip_codes set city = 'New Bandon Northumb C' where zip_code = 'E9C 2A7'
and city = 'New Bandon Northumb Co' and state = 'NB';
update zip_codes set city = 'New Bandon Northumb C' where zip_code = 'E9C 2A8'
and city = 'New Bandon Northumb Co' and state = 'NB';
update zip_codes set city = 'New Bandon Northumb C' where zip_code = 'E9C 2A9'
and city = 'New Bandon Northumb Co' and state = 'NB';
update zip_codes set city = 'New Bandon Northumb C' where zip_code = 'E9C 2B1'
and city = 'New Bandon Northumb Co' and state = 'NB';
update zip_codes set city = 'New Bandon Northumb C' where zip_code = 'E9C 2B2'
and city = 'New Bandon Northumb Co' and state = 'NB';
update zip_codes set city = 'New Bandon Northumb C' where zip_code = 'E9C 2B3'
and city = 'New Bandon Northumb Co' and state = 'NB';
update zip_codes set city = 'New Bandon Northumb C' where zip_code = 'E9C 2B4'
and city = 'New Bandon Northumb Co' and state = 'NB';
update zip_codes set city = 'New Bandon Northumb C' where zip_code = 'E9C 2B5'
and city = 'New Bandon Northumb Co' and state = 'NB';
update zip_codes set city = 'New Bandon Northumb C' where zip_code = 'E9C 2B6'
and city = 'New Bandon Northumb Co' and state = 'NB';
update zip_codes set city = 'New Bandon Northumb C' where zip_code = 'E9C 2B7'
and city = 'New Bandon Northumb Co' and state = 'NB';
update zip_codes set city = 'New Bandon Northumb C' where zip_code = 'E9C 2B8'
and city = 'New Bandon Northumb Co' and state = 'NB';
update zip_codes set city = 'New Bandon Northumb C' where zip_code = 'E9C 2B9'
and city = 'New Bandon Northumb Co' and state = 'NB';
update zip_codes set city = 'New Bandon Northumb C' where zip_code = 'E9C 2C1'
and city = 'New Bandon Northumb Co' and state = 'NB';
update zip_codes set city = 'New Bandon Northumb C' where zip_code = 'E9C 2C2'
and city = 'New Bandon Northumb Co' and state = 'NB';
update zip_codes set city = 'New Bandon Northumb C' where zip_code = 'E9C 2C3'
and city = 'New Bandon Northumb Co' and state = 'NB';
update zip_codes set city = 'New Bandon Northumb C' where zip_code = 'E9C 2C4'
and city = 'New Bandon Northumb Co' and state = 'NB';
update zip_codes set city = 'New Bandon Northumb C' where zip_code = 'E9C 2C5'
and city = 'New Bandon Northumb Co' and state = 'NB';
update zip_codes set city = 'New Bandon Northumb C' where zip_code = 'E9C 2H2'
and city = 'New Bandon Northumb Co' and state = 'NB';
update zip_codes set city = 'New Market' where zip_code = '55054' and city =
'Elko New Market' and state = 'MN';
update zip_codes set city = 'Norbertville' where zip_code = 'G0P 1B0' and city =
'Saint-norbert-d''arthabaska' and state = 'QC';
update zip_codes set city = 'North Ferrisburg' where zip_code = '05473' and city
= 'North Ferrisburgh' and state = 'VT';
update zip_codes set city = 'North Hollywood' where zip_code = '91607' and city =
'Valley Village' and state = 'CA';
update zip_codes set city = 'North Hollywood' where zip_code = '91617' and city =
'Valley Village' and state = 'CA';
update zip_codes set city = 'North Wesaint Brook' where zip_code = 'A0E 2P0' and
city = 'North West Brook' and state = 'NL';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 3H6'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 3H7'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 3H8'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 3H9'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 3J1'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 5V6'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 5X5'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 5X6'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 5X8'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 6C2'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 6C3'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 6C4'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 6R8'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 6R9'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 6S1'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 6S2'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 6S3'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 6S4'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 6S5'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 6S6'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 6S7'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 6Y1'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 7C9'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 7E7'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 7L8'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 7M3'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 7M4'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 7P2'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 7P5'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 7V4'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 7V5'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 7Z5'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 7Z8'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 8K1'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 8K9'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 8M2'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 8M3'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 8M4'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 8M5'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 8M6'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 8M7'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 8M8'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 8M9'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 8N1'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 8N2'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 8N3'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 8N4'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 8N5'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 8N6'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 8N7'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 8N8'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 8N9'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 8P1'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 8P4'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 8P6'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 8X3'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 8X4'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 8X5'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 8X6'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 8X7'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 8X8'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 8Y6'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 8Y7'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 8Z5'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 8Z7'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 8Z8'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 8Z9'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 9A1'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 9A2'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 9C5'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 9C6'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 9C7'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 9C8'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 9C9'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 9E2'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 9E3'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 9E4'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 9E9'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 9G1'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 9G2'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 9G3'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 9L8'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 9L9'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 9R8'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 9R9'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 9W9'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 9Y5'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 9Y6'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 9Y7'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 9Y8'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame De L''Ile P' where zip_code = 'J7V 9Y9'
and city = 'Notre-dame-de-l''ile-perrot' and state = 'QC';
update zip_codes set city = 'Notre Dame Du Lac' where zip_code = 'G0L 1X0' and
city = 'Temiscouata-sur-le-lac' and state = 'QC';
update zip_codes set city = 'Orlando' where zip_code = '32799' and city = 'Mid
Florida' and state = 'FL';
update zip_codes set city = 'Oro Station' where zip_code = 'L0L 2E0' and city =
'Oro-medonte' and state = 'ON';
update zip_codes set city = 'Oroville' where zip_code = '95940' and city =
'Feather Falls' and state = 'CA';
update zip_codes set city = 'Pabineau Firsaint Nat' where zip_code = 'E2A 7M2'
and city = 'Pabineau First Nation' and state = 'NB';
update zip_codes set city = 'Pabineau Firsaint Nat' where zip_code = 'E2A 7M3'
and city = 'Pabineau First Nation' and state = 'NB';
update zip_codes set city = 'Pabineau Firsaint Nat' where zip_code = 'E2A 7M4'
and city = 'Pabineau First Nation' and state = 'NB';
update zip_codes set city = 'Pabineau Firsaint Nat' where zip_code = 'E2A 7M5'
and city = 'Pabineau First Nation' and state = 'NB';
update zip_codes set city = 'Pabineau Firsaint Nat' where zip_code = 'E2A 7M6'
and city = 'Pabineau First Nation' and state = 'NB';
update zip_codes set city = 'Pabineau Firsaint Nat' where zip_code = 'E2A 7M7'
and city = 'Pabineau First Nation' and state = 'NB';
update zip_codes set city = 'Pabineau Firsaint Nat' where zip_code = 'E2A 7M8'
and city = 'Pabineau First Nation' and state = 'NB';
update zip_codes set city = 'Pabineau Firsaint Nat' where zip_code = 'E2A 7M9'
and city = 'Pabineau First Nation' and state = 'NB';
update zip_codes set city = 'Pabineau Firsaint Nat' where zip_code = 'E2A 7N1'
and city = 'Pabineau First Nation' and state = 'NB';
update zip_codes set city = 'Pabineau Firsaint Nat' where zip_code = 'E2A 7N2'
and city = 'Pabineau First Nation' and state = 'NB';
update zip_codes set city = 'Pabineau Firsaint Nat' where zip_code = 'E2A 7N3'
and city = 'Pabineau First Nation' and state = 'NB';
update zip_codes set city = 'Pabineau Firsaint Nat' where zip_code = 'E2A 7N4'
and city = 'Pabineau First Nation' and state = 'NB';
update zip_codes set city = 'Pabineau Firsaint Nat' where zip_code = 'E2A 7N5'
and city = 'Pabineau First Nation' and state = 'NB';
update zip_codes set city = 'Pabineau Firsaint Nat' where zip_code = 'E2A 7N6'
and city = 'Pabineau First Nation' and state = 'NB';
update zip_codes set city = 'Pabineau Firsaint Nat' where zip_code = 'E2A 7N7'
and city = 'Pabineau First Nation' and state = 'NB';
update zip_codes set city = 'Pabineau Firsaint Nat' where zip_code = 'E2A 7N8'
and city = 'Pabineau First Nation' and state = 'NB';
update zip_codes set city = 'Pabineau Firsaint Nat' where zip_code = 'E2A 7R4'
and city = 'Pabineau First Nation' and state = 'NB';
update zip_codes set city = 'Panama City' where zip_code = '32461' and city =
'Rosemary Beach' and state = 'FL';
update zip_codes set city = 'Pelican Narrows' where zip_code = 'S0P 0E0' and city
= 'Pelican Narrows' and state = 'SK';
update zip_codes set city = 'Perkinsfield' where zip_code = 'L0L 2J0' and city =
'Tiny' and state = 'ON';
update zip_codes set city = 'Peru' where zip_code = '46971' and city = 'Grissom
Arb' and state = 'IN';
update zip_codes set city = 'Peterborough' where zip_code = 'K9J 6Y1' and city =
'Douro-dummer' and state = 'ON';
update zip_codes set city = 'Peterborough' where zip_code = 'K9J 6Y3' and city =
'Otonabee' and state = 'ON';
update zip_codes set city = 'Peterborough' where zip_code = 'K9J 6Z9' and city =
'Cavan Monaghan' and state = 'ON';
update zip_codes set city = 'Petersburg' where zip_code = '23806' and city =
'Virginia State University' and state = 'VA';
update zip_codes set city = 'Petersburg' where zip_code = '62659' and city =
'Lincolns New Salem' and state = 'IL';
update zip_codes set city = 'Petit Forte' where zip_code = 'A0E 3A0' and city =
'Petite Forte' and state = 'NL';
update zip_codes set city = 'Petite Riviere Saint' where zip_code = 'G0A 2L0' and
city = 'Petite-riviere-saint-francois' and state = 'QC';
update zip_codes set city = 'Pine Mountain' where zip_code = '93222' and city =
'Pine Mountain Club' and state = 'CA';
update zip_codes set city = 'Pinehouse Lake' where zip_code = 'S0J 2B0' and city
= 'Pinehouse Lake' and state = 'SK';
update zip_codes set city = 'Pioneer' where zip_code = '95644' and city = 'Kit
Carson' and state = 'CA';
update zip_codes set city = 'Pleasant Ridge Char C' where zip_code = 'E5A 3A6'
and city = 'Pleasant Ridge Char County' and state = 'NB';
update zip_codes set city = 'Pleasant Ridge Char C' where zip_code = 'E5A 3A7'
and city = 'Pleasant Ridge Char County' and state = 'NB';
update zip_codes set city = 'Pleasant Ridge Char C' where zip_code = 'E5A 3A8'
and city = 'Pleasant Ridge Char County' and state = 'NB';
update zip_codes set city = 'Pleasant Ridge Kings' where zip_code = 'E5P 2A8' and
city = 'Pleasant Ridge Kings Co' and state = 'NB';
update zip_codes set city = 'Pleasant Ridge Kings' where zip_code = 'E5P 3A6' and
city = 'Pleasant Ridge Kings Co' and state = 'NB';
update zip_codes set city = 'Pleasant Ridge Kings' where zip_code = 'E5P 3A7' and
city = 'Pleasant Ridge Kings Co' and state = 'NB';
update zip_codes set city = 'Pleasant Ridge Kings' where zip_code = 'E5P 3A8' and
city = 'Pleasant Ridge Kings Co' and state = 'NB';
update zip_codes set city = 'Pleasant Ridge Kings' where zip_code = 'E5P 4C3' and
city = 'Pleasant Ridge Kings Co' and state = 'NB';
update zip_codes set city = 'Pleasant Ridge Kings' where zip_code = 'E5P 4C4' and
city = 'Pleasant Ridge Kings Co' and state = 'NB';
update zip_codes set city = 'Pleasant Ridge Kings' where zip_code = 'E5P 4C5' and
city = 'Pleasant Ridge Kings Co' and state = 'NB';
update zip_codes set city = 'Pleasant Ridge Kings' where zip_code = 'E5P 4C6' and
city = 'Pleasant Ridge Kings Co' and state = 'NB';
update zip_codes set city = 'Pleasant Ridge Kings' where zip_code = 'E5P 4C7' and
city = 'Pleasant Ridge Kings Co' and state = 'NB';
update zip_codes set city = 'Pleasant Ridge Kings' where zip_code = 'E5P 4C8' and
city = 'Pleasant Ridge Kings Co' and state = 'NB';
update zip_codes set city = 'Pleasant Ridge Kings' where zip_code = 'E5P 4C9' and
city = 'Pleasant Ridge Kings Co' and state = 'NB';
update zip_codes set city = 'Pleasant Ridge Kings' where zip_code = 'E5P 4E1' and
city = 'Pleasant Ridge Kings Co' and state = 'NB';
update zip_codes set city = 'Pleasant Ridge Kings' where zip_code = 'E5P 4E2' and
city = 'Pleasant Ridge Kings Co' and state = 'NB';
update zip_codes set city = 'Pleasant Ridge Kings' where zip_code = 'E5P 4E3' and
city = 'Pleasant Ridge Kings Co' and state = 'NB';
update zip_codes set city = 'Pocono Lake' where zip_code = '18348' and city =
'Pocono Lake Preserve' and state = 'PA';
update zip_codes set city = 'Point Mugu' where zip_code = '93042' and city =
'Point Mugu Nawc' and state = 'CA';
update zip_codes set city = 'Porters Lake' where zip_code = 'B3E 1K4' and city =
'West Porters Lake' and state = 'NS';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1A1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1A2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1A3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1A4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1A5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1A6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1A7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1A8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1A9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1B1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1B2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1B3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1B5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1B6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1B7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1B8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1B9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1C1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1C2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1C3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1C4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1C5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1C6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1C7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1C8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1C9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1E1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1E2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1E3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1E4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1E5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1E6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1E7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1E8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1E9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1G1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1G2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1G3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1G4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1G5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1G6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1G7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1G8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1G9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1H1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1H2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1H3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1H4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1H5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1H6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1H7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1H8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1H9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1J1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1J2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1J3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1J4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1J5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1J6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1J7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1J8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1J9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1K1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1K2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1K3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1K4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1K5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1K6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1K7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1K8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1K9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1L1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1L2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1L3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1L5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1L6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1L7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1L8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1L9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1M2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1M3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1M4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1M5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1M6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1M7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1M8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1M9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1N1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1N2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1N3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1N4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1N5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1N6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1N8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1N9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1P1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1P2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1P3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1P4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1P5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1P6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1P7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1P8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1P9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1R1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1R2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1R3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1R4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1R5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1R6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1R7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1R8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1R9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1S1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1S2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1S4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1S5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1S6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1S7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1S8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1S9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1T1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1T2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1T3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1T4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1T5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1T6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1T7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1T8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1T9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1V1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1V2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1V3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1V4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1V5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1V6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1V7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1V8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1V9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1W1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1W2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1W3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1W4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1W5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1W7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1W8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1W9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1X1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1X2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1X3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1X4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1X5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1X6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1X7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1X8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1X9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1Y1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1Y2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1Y3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1Y4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1Y5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1Y6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1Y7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1Y9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1Z1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1Z2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1Z3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1Z4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1Z5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1Z6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1Z7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1Z8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 1Z9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2A1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2A2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2A3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2A4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2A5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2A6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2A7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2A8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2A9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2B1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2B2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2B3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2B4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2B5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2B6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2B7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2B8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2B9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2C1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2C2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2C3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2C4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2C5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2C6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2C7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2C8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2C9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2E1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2E2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2E3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2E4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2E5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2E6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2E7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2E8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2E9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2G1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2G2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2G3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2G4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2G5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2G6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2G7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2G8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2G9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2H1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2H2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2H3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2H4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2H5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2H6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2H7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2H8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2H9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2J1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2J2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2J3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2J4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2J5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2J6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2J7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2J8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2J9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2K1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2K2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2K3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2K4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2K5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2K6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2K7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2K8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2K9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2L1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2L2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2L3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2L4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2L5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2L6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2L7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2L8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2L9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2M1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2M2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2M3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2M4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2M5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2M6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2M7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2M8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2M9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2N1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2N2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2N3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2N4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2N5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2N6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2N7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2N8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2N9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2P1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2P2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2P3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2P4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2P5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2P6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2P7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2P8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2P9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2R1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2R2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2R3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2R4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2R5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2R6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2R7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2R8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2R9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2S1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2S2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2S3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2S4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2S5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2S6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2S7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2S8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2S9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2T1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2T2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2T3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2T4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2T5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2T6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2T7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2T8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2T9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2V1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2V2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2V3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2V4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2V5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2V6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2V7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2V8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2V9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2W1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2W2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2W3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2W4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2W5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2W6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2W7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2W8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2W9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2X1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2X2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2X3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2X4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2X5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2X6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2X7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2X8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2X9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2Y1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2Y2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2Y3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2Y4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2Y5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2Y6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2Y7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2Y8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2Z1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2Z2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2Z3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2Z4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2Z5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2Z6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2Z7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2Z8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 2Z9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3A1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3A2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3A3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3A4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3A5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3A6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3A7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3A8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3A9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3B1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3B2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3B3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3B4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3B5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3B6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3B7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3B8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3B9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3C1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3C2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3C3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3C4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3C5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3C6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3C7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3C8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3C9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3E1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3E2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3E3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3E4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3E5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3E6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3E7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3E8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3E9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3G1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3G2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3G3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3G4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3G5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3G6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3G7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3G8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3G9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3H1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3H2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3H3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3H4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3H5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3H6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3H7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3H8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3H9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3J1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3J2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3J3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3J4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3J5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3J6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3J7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3J8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3J9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3K1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3K2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3K3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3K4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3K5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3K6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3K7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3K8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3K9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3L1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3L2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3L3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3L4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3L5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3L6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3L7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3L8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3L9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3M1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3M2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3M3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3M4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3M5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3M6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3M7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3M8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3M9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3N1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3N2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3N3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3N4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3N5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3N6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3N7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3N8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3N9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3P1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3P2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3P3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3P4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3P5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3P6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3P7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3P8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3P9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3R1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3R2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3R3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3R4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3R5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3R6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3R7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3R8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3S4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3S5'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3S6'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3S7'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3S8'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3S9'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3T1'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3T2'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3T3'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Portugal Cove Saint P' where zip_code = 'A1M 3T4'
and city = 'Portugal Cove-st Philips' and state = 'NL';
update zip_codes set city = 'Rae Edzo' where zip_code = 'X0E 0Y0' and city =
'Behchoko' and state = 'NT';
update zip_codes set city = 'Redding' where zip_code = '06875' and city =
'Redding Center' and state = 'CT';
update zip_codes set city = 'Riverhead Harbour Gra' where zip_code = 'A0A 3P0'
and city = 'Riverhead Harbour Grace' and state = 'NL';
update zip_codes set city = 'Riverside' where zip_code = '92518' and city =
'March Air Reserve Base' and state = 'CA';
update zip_codes set city = 'Riviere Matawin' where zip_code = 'G0X 2C0' and city
= 'Trois-rives' and state = 'QC';
update zip_codes set city = 'Saint Albert' where zip_code = 'T8N 4C9' and city =
'Sturgeon County' and state = 'AB';
update zip_codes set city = 'Saint Adelphe De Cham' where zip_code = 'G0X 2G0'
and city = 'Saint-adelphe-de-champlain' and state = 'QC';
update zip_codes set city = 'Saint Alexandre D''Ibe' where zip_code = 'J0J 1S0'
and city = 'Saint-alexandre-d''iberville' and state = 'QC';
update zip_codes set city = 'Saint Alexandre De Ka' where zip_code = 'G0L 2G0'
and city = 'Saint-alexandre-de-kamouraska' and state = 'QC';
update zip_codes set city = 'Saint Alexis De Matap' where zip_code = 'G0J 2E0'
and city = 'Saint-alexis-de-matapedia' and state = 'QC';
update zip_codes set city = 'Saint Alphonse Rodrig' where zip_code = 'J0K 1W0'
and city = 'Saint-alphonse-rodriguez' and state = 'QC';
update zip_codes set city = 'Saint Ambroise De Kil' where zip_code = 'J0K 1C0'
and city = 'Saint-ambroise-de-kildare' and state = 'QC';
update zip_codes set city = 'Saint Andre De Kamour' where zip_code = 'G0L 2H0'
and city = 'Saint-andre-de-kamouraska' and state = 'QC';
update zip_codes set city = 'Saint Andre De Restig' where zip_code = 'G0J 2G0'
and city = 'Saint-andre-de-restigouche' and state = 'QC';
update zip_codes set city = 'Saint Andre Du Lac Sa' where zip_code = 'G0W 2K0'
and city = 'Saint-andre-du-lac-saint-jean' and state = 'QC';
update zip_codes set city = 'Saint Antoine Sur Ric' where zip_code = 'J0L 1R0'
and city = 'Saint-antoine-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1A1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1A2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1A3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1A4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1A5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1A6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1A7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1A8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1A9'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1B1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1B2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1B3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1B4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1B5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1B6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1B7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1B8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1B9'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1C1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1C2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1C3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1C4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1C5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1C6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1C7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1C8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1C9'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1E1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1E2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1E3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1E4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1E5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1E6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1E7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1E8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1E9'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1G1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1G2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1G3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1G4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1G5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1G6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1G7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1G8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1G9'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1H1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1H2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1H3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1H4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1H5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1H6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1H7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1H8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1H9'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1J1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1J2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1J3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1J4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1J5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1J6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1J7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1J8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1J9'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1K1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1K2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1K3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1K4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1K5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1K6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1K7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1K8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1K9'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1L1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1L2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1L3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1L4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1L5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1L6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1L7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1L8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1L9'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1M1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1M2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1M3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1M4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1M5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1M6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1M7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1M8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1M9'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1N1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1N2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1N3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1N4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1N5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1N6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1N7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1N8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1N9'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1P1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1P2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1P3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1P4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1P5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1P6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1P7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1P8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1P9'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1R1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1R2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1R3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1R4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1R5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1R6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1R7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1R8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1R9'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1S1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1S2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1S3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1S4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1S5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1S6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1S7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1S8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1S9'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1T1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1T2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1T3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1T4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1T5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1T6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1T7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1T8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1T9'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1V2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1V3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1V4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1V5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1V7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1V8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1V9'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1W7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1W8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1X1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1X2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1X3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1X4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1X5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1X6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1X7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1X8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1X9'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1Y1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1Y2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1Y3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1Y4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1Y5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1Y6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1Y7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1Y8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1Y9'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1Z1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1Z2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1Z3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1Z4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1Z5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1Z6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1Z7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1Z8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 1Z9'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2A1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2A2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2A3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2A5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2A6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2B2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2B3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2B4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2B5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2B6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2B7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2B8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2B9'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2C1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2C2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2C3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2C4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2C5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2C6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2C7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2C8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2C9'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2E1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2E2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2E3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2E4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2E5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2E6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2E7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2E8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2E9'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2G1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2G2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2G3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2G4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2G5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2G6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2G7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2G8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2H1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2H2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2H3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2H4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2H5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2H6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2H7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2H8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2J1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2J2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2J3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2J4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2J5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2J6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2J7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2J8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2J9'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2K1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2K2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2K3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2K4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2K5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2K6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2K7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2K8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2K9'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2L1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2L2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2L3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2L4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2L5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2L6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2L7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2L8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2L9'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2M1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2M2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2M3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2M4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2M5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2M6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2M7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2M8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2M9'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2N1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2N2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2N3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2N4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2N5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2N6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2N7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2N8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2N9'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2P1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2P2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2P3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2P4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2P5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2P6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2P7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2P8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2P9'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2R1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2R2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2R3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2R4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2R5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2R6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2R7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2R8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2R9'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2S1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2S2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2S3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2S4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2S5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2S6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2S7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2S8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2S9'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2T1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2T2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2T3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2T4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2T5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2T6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2T7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2T8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2T9'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2V1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2V2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2V3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2V4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2V5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2V6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2V7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2V8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2W1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2W2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2W3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2W4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2W5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2W6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2W7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2W8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2W9'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2X1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2X2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2X3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2X4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2X5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2X6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2X7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2X8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2X9'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2Y1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2Y2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2Y3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2Y4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2Y5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2Y6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2Y7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2Y8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2Y9'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2Z1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2Z2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2Z3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2Z4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2Z5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2Z6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2Z7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2Z8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 2Z9'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 3A2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 3A3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 3A4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 3A5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 3A6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 3A7'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 3A8'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 3A9'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 3B1'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 3B2'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 3B3'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 3B4'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 3B5'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Augustin De Des' where zip_code = 'G3A 3B6'
and city = 'Saint-augustin-de-desmaures' and state = 'QC';
update zip_codes set city = 'Saint Basile' where zip_code = 'E7C 3C1' and city =
'Madawaska Maliseet Frst Nation' and state = 'NB';
update zip_codes set city = 'Saint Bernard De Mich' where zip_code = 'J0H 1C0'
and city = 'Saint-bernard-de-michaudville' and state = 'QC';
update zip_codes set city = 'Saint Bernards Jacque' where zip_code = 'A0E 2T0'
and city = 'St Bernards-jacques Fontaine' and state = 'NL';
update zip_codes set city = 'Saint Blaise Sur Rich' where zip_code = 'J0J 1W0'
and city = 'Saint-blaise-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Boniface De Sha' where zip_code = 'G0X 2L0'
and city = 'Saint-boniface-de-shawinigan' and state = 'QC';
update zip_codes set city = 'Saint Bruno De Kamour' where zip_code = 'G0L 2M0'
and city = 'Saint-bruno-de-kamouraska' and state = 'QC';
update zip_codes set city = 'Saint Bruno Lac Saint' where zip_code = 'G0W 2L0'
and city = 'Saint-bruno-lac-saint-jean' and state = 'QC';
update zip_codes set city = 'Saint Camille De Bell' where zip_code = 'G0R 2S0'
and city = 'Saint-camille-de-bellechasse' and state = 'QC';
update zip_codes set city = 'Saint Charles De Bell' where zip_code = 'G0R 2T0'
and city = 'Saint-charles-de-bellechasse' and state = 'QC';
update zip_codes set city = 'Saint Charles Sur Ric' where zip_code = 'J0H 2G0'
and city = 'Saint-charles-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Cleophas De Bra' where zip_code = 'J0K 2A0'
and city = 'Saint-cleophas-de-brandon' and state = 'QC';
update zip_codes set city = 'Saint Damase De Matap' where zip_code = 'G0J 2J0'
and city = 'Saint-damase-de-matapedia' and state = 'QC';
update zip_codes set city = 'Saint Damase Des Auln' where zip_code = 'G0R 2X0'
and city = 'Saint-damase-des-aulnaies' and state = 'QC';
update zip_codes set city = 'Saint Davids Church' where zip_code = '22652' and
city = 'Fort Valley' and state = 'VA';
update zip_codes set city = 'Saint Denis De La Bou' where zip_code = 'G0L 2R0'
and city = 'Saint-denis-de-la-bouteillerie' and state = 'QC';
update zip_codes set city = 'Saint Denis Sur Riche' where zip_code = 'J0H 1K0'
and city = 'Saint-denis-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Denis' where zip_code = 'S0K 3W0' and city =
'St Denis' and state = 'SK';
update zip_codes set city = 'Saint Dominique Du Ro' where zip_code = 'J0Y 2K0'
and city = 'Saint-dominique-du-rosaire' and state = 'QC';
update zip_codes set city = 'Saint Edmond De Grant' where zip_code = 'J0C 1K0'
and city = 'Saint-germain-de-grantham' and state = 'QC';
update zip_codes set city = 'Saint Edouard De Lotb' where zip_code = 'G0S 1Y0'
and city = 'Saint-edouard-de-lotbiniere' and state = 'QC';
update zip_codes set city = 'Saint Edouard De Mask' where zip_code = 'J0K 2H0'
and city = 'Saint-edouard-de-maskinonge' and state = 'QC';
update zip_codes set city = 'Saint Edouard De Napi' where zip_code = 'J0L 1Y0'
and city = 'Saint-edouard-de-napierville' and state = 'QC';
update zip_codes set city = 'Saint Elie' where zip_code = 'G0X 2N0' and city =
'Saint-elie-de-caxton' and state = 'QC';
update zip_codes set city = 'Saint Elzear De Bonav' where zip_code = 'G0C 2W0'
and city = 'Saint-elzear-de-bonaventure' and state = 'QC';
update zip_codes set city = 'Saint Elzear De Temis' where zip_code = 'G0L 2W0'
and city = 'Saint-elzear-de-temiscouata' and state = 'QC';
update zip_codes set city = 'Saint Etienne De Beau' where zip_code = 'J0S 1S0'
and city = 'Saint-etienne-de-beauharnois' and state = 'QC';
update zip_codes set city = 'Saint Evarisainte De' where zip_code = 'G0M 1S0' and
city = 'Saint-evariste-de-forsyth' and state = 'QC';
update zip_codes set city = 'Saint Faustin Lac Car' where zip_code = 'J0T 1J1'
and city = 'Saint-faustin-lac-carre' and state = 'QC';
update zip_codes set city = 'Saint Faustin Lac Car' where zip_code = 'J0T 1J2'
and city = 'Saint-faustin-lac-carre' and state = 'QC';
update zip_codes set city = 'Saint Faustin Lac Car' where zip_code = 'J0T 1J3'
and city = 'Saint-faustin-lac-carre' and state = 'QC';
update zip_codes set city = 'Saint Faustin' where zip_code = 'J0T 2G0' and city =
'Saint-faustin-lac-carre' and state = 'QC';
update zip_codes set city = 'Saint Francois D''Orle' where zip_code = 'G0A 3S0'
and city = 'Saint-francois-d''orleans' and state = 'QC';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1A2'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1A3'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1A4'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1A5'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1A6'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1A7'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1A8'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1A9'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1B1'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1B2'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1B3'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1B4'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1B5'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1B6'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1B7'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1B8'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1B9'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1C1'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1C2'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1C3'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1C4'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1C5'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1C6'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1C7'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1C8'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1C9'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1E1'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1E2'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1E3'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1E4'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1E5'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1E6'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1E7'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1E8'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1E9'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1G1'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1G2'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1G3'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1G4'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1G5'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1G6'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1G7'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1G8'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1G9'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1H1'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1H2'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1H3'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1P1'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1P2'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1P3'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1P4'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1P5'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1P6'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1P7'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1P8'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1P9'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1R1'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1R2'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1R3'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1R4'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1R5'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1R6'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1R7'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1R8'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1R9'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1S1'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1S2'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1S3'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1S4'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1S5'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1S6'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1S7'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1S8'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 1S9'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois De Mad' where zip_code = 'E7A 2K8'
and city = 'Saint-francois-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Francois Montma' where zip_code = 'G0R 3A0'
and city = 'St-francois-de-la-riviere-du-s' and state = 'QC';
update zip_codes set city = 'Saint Francois Xavier' where zip_code = 'G0L 3C0'
and city = 'Saint-francois-xavier-de-viger' and state = 'QC';
update zip_codes set city = 'Saint Francois Xavier' where zip_code = 'J0B 2V0'
and city = 'St-francois-xavier-de-brompton' and state = 'QC';
update zip_codes set city = 'Saint Gabriel De Kamo' where zip_code = 'G0L 3E0'
and city = 'St-gabriel-de-kamouraska' and state = 'QC';
update zip_codes set city = 'Saint Gabriel De Rimo' where zip_code = 'G0K 1M0'
and city = 'Saint-gabriel-de-rimouski' and state = 'QC';
update zip_codes set city = 'Saint Gabriel De Valc' where zip_code = 'G0A 4S0'
and city = 'Saint-gabriel-de-valcartier' and state = 'QC';
update zip_codes set city = 'Saint George' where zip_code = 'R0E 1V0' and city =
'St. Georges' and state = 'MB';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 6K8'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 6K9'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 6S7'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 6S9'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 6X1'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 6X2'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 6X3'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 6X4'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 6X5'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 6X6'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 6X7'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 6X8'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 6X9'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 6Y1'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 6Y2'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 6Y3'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 6Y4'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 6Y5'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 6Y6'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 6Y7'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 6Y8'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 6Y9'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 6Z1'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 6Z2'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 6Z3'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 6Z4'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 6Z5'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 7G6'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 7J2'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 7J3'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 7K3'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 7K4'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 7K5'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 7K6'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 7V2'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 7Z2'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 8H8'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9N 8M6'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1A1'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1A2'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1A3'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1A4'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1A5'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1A6'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1A7'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1A8'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1A9'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1B1'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1B2'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1C7'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1C8'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1E4'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1E5'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1E6'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1E7'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1E8'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1E9'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1G2'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1G3'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1G4'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1G5'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1G6'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1G7'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1G8'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1G9'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1H1'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1H2'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1H3'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1H4'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1H5'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1H6'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1H7'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1H8'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1H9'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1J1'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1J2'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1J3'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1J4'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1J5'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1J6'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1J7'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1J8'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1J9'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1K1'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1K2'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1K3'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1K4'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1K5'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1K6'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1K7'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1K8'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1K9'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1L1'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1L2'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1L3'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1L4'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1L5'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1L6'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1L7'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1L8'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1L9'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1M1'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1M2'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1M3'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1M4'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1M5'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1M6'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1M7'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1M8'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1M9'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1N1'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1N2'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1N3'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1N4'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1N5'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1N6'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1N7'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1N8'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1N9'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1P1'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1P2'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1P3'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1P4'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1P5'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1P6'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1P7'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1P8'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1P9'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1R1'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1R2'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1R3'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1R4'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1R5'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1R6'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1R7'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1R8'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1R9'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1S1'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1S2'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1S3'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1S4'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1S5'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1S6'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1S7'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1S8'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1S9'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1T1'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1T2'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1T3'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1T4'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1T5'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1T6'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1T7'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1T8'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1T9'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1V1'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1V2'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1V3'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1V4'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1V5'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1V6'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1V7'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1V9'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1W1'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1W2'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1W3'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1W4'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1W7'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1W8'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1X7'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1Y1'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Gerard Des Laur' where zip_code = 'G9R 1Y2'
and city = 'Saint-gerard-des-laurentides' and state = 'QC';
update zip_codes set city = 'Saint Helenas Island' where zip_code = '29920' and
city = 'Saint Helena Island' and state = 'SC';
update zip_codes set city = 'Saint Honore De Chico' where zip_code = 'G0V 1L0'
and city = 'Saint-honore-de-chicoutimi' and state = 'QC';
update zip_codes set city = 'Saint Honore De Shenl' where zip_code = 'G0M 1V0'
and city = 'Saint-honore-de-shenley' and state = 'QC';
update zip_codes set city = 'Saint Honore De Temis' where zip_code = 'G0L 3K0'
and city = 'Saint-honore-de-temiscouata' and state = 'QC';
update zip_codes set city = 'Saint Hubert Riviere' where zip_code = 'G0L 3L0' and
city = 'Saint-hubert-riviere-du-loup' and state = 'QC';
update zip_codes set city = 'Saint Ignace De Stanb' where zip_code = 'J0J 1Y0'
and city = 'Saint-ignace-de-stanbridge' and state = 'QC';
update zip_codes set city = 'Saint Isidore De Bell' where zip_code = 'S0K 3Y0'
and city = 'St Isidore De Bellevue' and state = 'SK';
update zip_codes set city = 'Saint Isidore De Clif' where zip_code = 'J0B 2X0'
and city = 'Saint-isidore-de-clifton' and state = 'QC';
update zip_codes set city = 'Saint Isidore De Lapr' where zip_code = 'J0L 2A0'
and city = 'Saint-isidore-de-laprairie' and state = 'QC';
update zip_codes set city = 'Saint Joachim De Mont' where zip_code = 'G0A 3X0'
and city = 'St-joachim-de-montmorency' and state = 'QC';
update zip_codes set city = 'Saint Joseph De Coler' where zip_code = 'G0N 1B0'
and city = 'Saint-joseph-de-coleraine' and state = 'QC';
update zip_codes set city = 'Saint Joseph De Kamou' where zip_code = 'G0L 3P0'
and city = 'Saint-joseph-de-kamouraska' and state = 'QC';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2E4'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2K1'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2K2'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2K3'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2K4'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2K5'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2K6'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2K7'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2K8'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2K9'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2L1'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2L2'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2L3'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2L4'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2L5'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2L6'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2L7'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2L8'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2L9'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2M1'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2M2'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2M3'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2M4'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2M5'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2M6'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2M7'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2M8'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2M9'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2N1'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2N2'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2N3'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2N4'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2N5'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2N9'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2P1'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2P2'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2P3'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2P4'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2P5'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2P6'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2P7'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2P8'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2P9'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2R1'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2R2'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2R3'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2R4'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2R5'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2R6'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2R7'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2R8'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2S2'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2S3'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2S8'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2S9'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2T1'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2T2'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2T3'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2T4'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2T5'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2T6'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2T7'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2T8'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2T9'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2V1'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2V3'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2V4'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2V6'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2W1'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2W2'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2W4'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2X6'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Joseph De Madaw' where zip_code = 'E7B 2Y7'
and city = 'St-joseph-de-madawaska' and state = 'NB';
update zip_codes set city = 'Saint Jovite B A 1' where zip_code = 'J0T 2X0' and
city = 'Riviere-rouge' and state = 'QC';
update zip_codes set city = 'Saint Jusaint De Bret' where zip_code = 'G0R 3H0'
and city = 'Saint-just-de-bretenieres' and state = 'QC';
update zip_codes set city = 'Saint Laurent L''Ile D' where zip_code = 'G0A 3Z0'
and city = 'Saint-laurent-ile-d''orleans' and state = 'QC';
update zip_codes set city = 'Saint Lazare De Belle' where zip_code = 'G0R 3J0'
and city = 'Saint-lazare-de-bellechasse' and state = 'QC';
update zip_codes set city = 'Saint Leonard De Port' where zip_code = 'G0A 4A0'
and city = 'Saint-leonard-de-portneuf' and state = 'QC';
update zip_codes set city = 'Saint Marcel De Riche' where zip_code = 'J0H 1T0'
and city = 'Saint-marcel-de-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Martin De Resti' where zip_code = 'E8A 2C4'
and city = 'Saint-martin-de-restigouche' and state = 'NB';
update zip_codes set city = 'Saint Martin De Resti' where zip_code = 'E8A 2L8'
and city = 'Saint-martin-de-restigouche' and state = 'NB';
update zip_codes set city = 'Saint Martin De Resti' where zip_code = 'E8A 2L9'
and city = 'Saint-martin-de-restigouche' and state = 'NB';
update zip_codes set city = 'Saint Martin De Resti' where zip_code = 'E8A 2M6'
and city = 'Saint-martin-de-restigouche' and state = 'NB';
update zip_codes set city = 'Saint Martin De Resti' where zip_code = 'E8A 2M7'
and city = 'Saint-martin-de-restigouche' and state = 'NB';
update zip_codes set city = 'Saint Martin De Resti' where zip_code = 'E8A 2M8'
and city = 'Saint-martin-de-restigouche' and state = 'NB';
update zip_codes set city = 'Saint Martin De Resti' where zip_code = 'E8A 2M9'
and city = 'Saint-martin-de-restigouche' and state = 'NB';
update zip_codes set city = 'Saint Martin De Resti' where zip_code = 'E8A 2N1'
and city = 'Saint-martin-de-restigouche' and state = 'NB';
update zip_codes set city = 'Saint Martin De Resti' where zip_code = 'E8A 2N2'
and city = 'Saint-martin-de-restigouche' and state = 'NB';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 5Z7'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 5Z8'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 5Z9'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6A1'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6A2'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6A3'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6A4'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6A5'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6A6'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6A7'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6A8'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6A9'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6B1'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6B2'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6B3'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6B4'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6B5'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6B6'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6B7'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6B8'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6B9'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6C1'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6C2'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6C3'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6C4'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6C5'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6C6'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6C7'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6C8'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6C9'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6E1'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6E2'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6E3'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6E4'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6E5'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6E6'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6E7'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6E8'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6E9'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6G1'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6G2'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6H7'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6K3'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6T9'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6X3'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6Z1'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6Z3'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathias Sur Ric' where zip_code = 'J3L 6Z5'
and city = 'Saint-mathias-sur-richelieu' and state = 'QC';
update zip_codes set city = 'Saint Mathieu De Lapr' where zip_code = 'J0L 2H0'
and city = 'Saint-mathieu-de-laprairie' and state = 'QC';
update zip_codes set city = 'Saint Mathieu Du Parc' where zip_code = 'G0X 1N0'
and city = 'Saint-elie-de-caxton' and state = 'QC';
update zip_codes set city = 'Saint Michel De Belle' where zip_code = 'G0R 3S0'
and city = 'Saint-michel-de-bellechasse' and state = 'QC';
update zip_codes set city = 'Saint Narcisse De Bea' where zip_code = 'G0S 1W0'
and city = 'Saint-narcisse-de-beaurivage' and state = 'QC';
update zip_codes set city = 'Saint Narcisse De Rim' where zip_code = 'G0K 1S0'
and city = 'Saint-narcisse-de-rimouski' and state = 'QC';
update zip_codes set city = 'Saint Nazaire De Buck' where zip_code = 'G0R 3T0'
and city = 'Saint-nazaire-de-dorchester' and state = 'QC';
update zip_codes set city = 'Saint Nazaire Du Lac' where zip_code = 'G0W 2V0' and
city = 'St-nazaire-du-lac-st-jean' and state = 'QC';
update zip_codes set city = 'Saint Omer L''Islet' where zip_code = 'G0R 4R0' and
city = 'Saint-omer-l''islet' and state = 'QC';
update zip_codes set city = 'Saint Patrice De Beau' where zip_code = 'G0S 1B0'
and city = 'Saint-patrice-de-beaurivage' and state = 'QC';
update zip_codes set city = 'Saint Paul' where zip_code = 'J6E 3H3' and city =
'Village Saint-pierre' and state = 'QC';
update zip_codes set city = 'Saint Pierre Ile D''Or' where zip_code = 'G0A 4E0'
and city = 'Saint-pierre-ile-d''orleans' and state = 'QC';
update zip_codes set city = 'Saint Pierre Montmagn' where zip_code = 'G0R 4B0'
and city = 'St-pierre-de-la-riviere-du-sud' and state = 'QC';
update zip_codes set city = 'Saint Prosper De Dorc' where zip_code = 'G0M 1Y0'
and city = 'Saint-prosper-de-dorchester' and state = 'QC';
update zip_codes set city = 'Saint Sebastien De Fr' where zip_code = 'G0Y 1M0'
and city = 'Saint-sebastien-de-frontenac' and state = 'QC';
update zip_codes set city = 'Saint Simeon De Bonav' where zip_code = 'G0C 3A0'
and city = 'Saint-simeon-de-bonaventure' and state = 'QC';
update zip_codes set city = 'Saint Stanislas De Ch' where zip_code = 'G0X 3E0'
and city = 'Saint-stanislas-de-champlain' and state = 'QC';
update zip_codes set city = 'Saint Stanislas De Ko' where zip_code = 'J0S 1W0'
and city = 'Saint-stanislas-de-kostka' and state = 'QC';
update zip_codes set city = 'Saint Urbain De Charl' where zip_code = 'G0A 4K0'
and city = 'Saint-urbain-de-charlevoix' and state = 'QC';
update zip_codes set city = 'Saint Valerien De Rim' where zip_code = 'G0L 4E0'
and city = 'Saint-valerien-de-rimouski' and state = 'QC';
update zip_codes set city = 'Saint Zephirin De Cou' where zip_code = 'J0G 1V0'
and city = 'Saint-zephirin-de-courval' and state = 'QC';
update zip_codes set city = 'Sainte Agathe De Lotb' where zip_code = 'G0S 2A0'
and city = 'Sainte-agathe-de-lotbiniere' and state = 'QC';
update zip_codes set city = 'Sainte Anne De La Roc' where zip_code = 'J0E 2B0'
and city = 'Sainte-anne-de-la-rochelle' and state = 'QC';
update zip_codes set city = 'Sainte Anne De Presco' where zip_code = 'K0B 1M0'
and city = 'Ste Anne De Prescott' and state = 'ON';
update zip_codes set city = 'Sainte Anne Du Ruisse' where zip_code = 'B0W 2X0'
and city = 'Ste-anne-du-ruisseau' and state = 'NS';
update zip_codes set city = 'Sainte Anne Glouceste' where zip_code = 'E2A 6Z2'
and city = 'Sainte-anne Gloucester Co' and state = 'NB';
update zip_codes set city = 'Sainte Anne Glouceste' where zip_code = 'E2A 6Z3'
and city = 'Sainte-anne Gloucester Co' and state = 'NB';
update zip_codes set city = 'Sainte Anne Glouceste' where zip_code = 'E2A 6Z4'
and city = 'Sainte-anne Gloucester Co' and state = 'NB';
update zip_codes set city = 'Sainte Anne Glouceste' where zip_code = 'E2A 6Z5'
and city = 'Sainte-anne Gloucester Co' and state = 'NB';
update zip_codes set city = 'Sainte Anne Glouceste' where zip_code = 'E2A 6Z6'
and city = 'Sainte-anne Gloucester Co' and state = 'NB';
update zip_codes set city = 'Sainte Anne Glouceste' where zip_code = 'E2A 6Z7'
and city = 'Sainte-anne Gloucester Co' and state = 'NB';
update zip_codes set city = 'Sainte Anne Glouceste' where zip_code = 'E2A 6Z8'
and city = 'Sainte-anne Gloucester Co' and state = 'NB';
update zip_codes set city = 'Sainte Anne Glouceste' where zip_code = 'E2A 6Z9'
and city = 'Sainte-anne Gloucester Co' and state = 'NB';
update zip_codes set city = 'Sainte Anne Glouceste' where zip_code = 'E2A 7A1'
and city = 'Sainte-anne Gloucester Co' and state = 'NB';
update zip_codes set city = 'Sainte Anne Glouceste' where zip_code = 'E2A 7A2'
and city = 'Sainte-anne Gloucester Co' and state = 'NB';
update zip_codes set city = 'Sainte Anne Glouceste' where zip_code = 'E2A 7A3'
and city = 'Sainte-anne Gloucester Co' and state = 'NB';
update zip_codes set city = 'Sainte Anne Glouceste' where zip_code = 'E2A 7A4'
and city = 'Sainte-anne Gloucester Co' and state = 'NB';
update zip_codes set city = 'Sainte Anne Glouceste' where zip_code = 'E2A 7A5'
and city = 'Sainte-anne Gloucester Co' and state = 'NB';
update zip_codes set city = 'Sainte Anne Glouceste' where zip_code = 'E2A 7A6'
and city = 'Sainte-anne Gloucester Co' and state = 'NB';
update zip_codes set city = 'Sainte Anne Glouceste' where zip_code = 'E2A 7A7'
and city = 'Sainte-anne Gloucester Co' and state = 'NB';
update zip_codes set city = 'Sainte Anne Glouceste' where zip_code = 'E2A 7A8'
and city = 'Sainte-anne Gloucester Co' and state = 'NB';
update zip_codes set city = 'Sainte Anne Glouceste' where zip_code = 'E2A 7A9'
and city = 'Sainte-anne Gloucester Co' and state = 'NB';
update zip_codes set city = 'Sainte Anne Glouceste' where zip_code = 'E2A 7B1'
and city = 'Sainte-anne Gloucester Co' and state = 'NB';
update zip_codes set city = 'Sainte Anne Glouceste' where zip_code = 'E2A 7B2'
and city = 'Sainte-anne Gloucester Co' and state = 'NB';
update zip_codes set city = 'Sainte Anne Glouceste' where zip_code = 'E2A 7B3'
and city = 'Sainte-anne Gloucester Co' and state = 'NB';
update zip_codes set city = 'Sainte Anne Glouceste' where zip_code = 'E2A 7B4'
and city = 'Sainte-anne Gloucester Co' and state = 'NB';
update zip_codes set city = 'Sainte Anne Glouceste' where zip_code = 'E2A 7B5'
and city = 'Sainte-anne Gloucester Co' and state = 'NB';
update zip_codes set city = 'Sainte Anne Glouceste' where zip_code = 'E2A 7B6'
and city = 'Sainte-anne Gloucester Co' and state = 'NB';
update zip_codes set city = 'Sainte Anne Glouceste' where zip_code = 'E2A 7L3'
and city = 'Sainte-anne Gloucester Co' and state = 'NB';
update zip_codes set city = 'Sainte Anne Glouceste' where zip_code = 'E2A 7L4'
and city = 'Sainte-anne Gloucester Co' and state = 'NB';
update zip_codes set city = 'Sainte Brigide D''Iber' where zip_code = 'J0J 1X0'
and city = 'Sainte-brigide-d''iberville' and state = 'QC';
update zip_codes set city = 'Sainte Brigitte Des S' where zip_code = 'J0C 1E0'
and city = 'Sainte-brigitte-des-saults' and state = 'QC';
update zip_codes set city = 'Sainte Christine D''Au' where zip_code = 'G0A 1A0'
and city = 'Sainte-christine-d''auvergne' and state = 'QC';
update zip_codes set city = 'Sainte Clotilde De Be' where zip_code = 'G0N 1C0'
and city = 'Sainte-clotilde-de-beauce' and state = 'QC';
update zip_codes set city = 'Sainte Clotilde De Ch' where zip_code = 'J0L 1W0'
and city = 'Sainte-clotilde-de-chateauguay' and state = 'QC';
update zip_codes set city = 'Sainte Clotilde De Ho' where zip_code = 'J0A 1H0'
and city = 'Sainte-clotilde-de-horton' and state = 'QC';
update zip_codes set city = 'Sainte Emelie De L''En' where zip_code = 'J0K 2K0'
and city = 'Sainte-emelie-de-l''energie' and state = 'QC';
update zip_codes set city = 'Sainte Felicite De L''' where zip_code = 'G0R 4P0'
and city = 'Sainte-felicite-de-l''islet' and state = 'QC';
update zip_codes set city = 'Sainte Francoise De L' where zip_code = 'G0S 2N0'
and city = 'Sainte-francoise-de-lotbiniere' and state = 'QC';
update zip_codes set city = 'Sainte Genevieve De B' where zip_code = 'G0X 2R0'
and city = 'Sainte-genevieve-de-batiscan' and state = 'QC';
update zip_codes set city = 'Sainte Gertrude De Vi' where zip_code = 'J0Y 2L0'
and city = 'Sainte-gertrude-manneville' and state = 'QC';
update zip_codes set city = 'Sainte Hedwidge De Ro' where zip_code = 'G0W 2R0'
and city = 'Sainte-hedwidge-de-roberval' and state = 'QC';
update zip_codes set city = 'Sainte Helene De Brea' where zip_code = 'G0S 1E1'
and city = 'Sainte-helene-de-breakeyville' and state = 'QC';
update zip_codes set city = 'Sainte Helene De Brea' where zip_code = 'G0S 1E2'
and city = 'Sainte-helene-de-breakeyville' and state = 'QC';
update zip_codes set city = 'Sainte Helene De Brea' where zip_code = 'G0S 1E3'
and city = 'Sainte-helene-de-breakeyville' and state = 'QC';
update zip_codes set city = 'Sainte Helene De Kamo' where zip_code = 'G0L 3J0'
and city = 'Sainte-helene-de-kamouraska' and state = 'QC';
update zip_codes set city = 'Sainte Irene De Matap' where zip_code = 'G0J 2P0'
and city = 'Ste-irene-de-matapedia' and state = 'QC';
update zip_codes set city = 'Sainte Jeanne D''Arc D' where zip_code = 'G0J 2T0'
and city = 'Ste-jeanne-d''arc-de-matane' and state = 'QC';
update zip_codes set city = 'Sainte Lucie De Beaur' where zip_code = 'G0R 3L0'
and city = 'Sainte-lucie-de-beauregard' and state = 'QC';
update zip_codes set city = 'Sainte Lucie De Donca' where zip_code = 'J0T 2J0'
and city = 'Sainte-lucie-des-laurentides' and state = 'QC';
update zip_codes set city = 'Sainte Marcelline De' where zip_code = 'J0K 2Y0' and
city = 'Sainte-marcelline-de-kildare' and state = 'QC';
update zip_codes set city = 'Sainte Marguerite De' where zip_code = 'G0S 2X0' and
city = 'Ste-marguerite-de-dorchester' and state = 'QC';
update zip_codes set city = 'Sainte Marguerite Du' where zip_code = 'J0T 1L0' and
city = 'Ste-marguerite-du-lac-masson' and state = 'QC';
update zip_codes set city = 'Sainte Marie De Bland' where zip_code = 'G0X 2W0'
and city = 'Sainte-marie-de-blandford' and state = 'QC';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1N4'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1N5'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1N6'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1N7'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1N8'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1N9'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1P1'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1P2'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1P3'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1P4'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1P5'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1P6'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1P7'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1P8'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1P9'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1R1'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1R2'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1R3'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1R4'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1R5'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1R6'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1R7'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1R8'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1R9'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1S1'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1S2'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1S3'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1S4'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1S5'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1S6'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1S7'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1S8'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1S9'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1T1'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1T2'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1T3'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1T4'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1T5'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1T6'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1T7'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1T8'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1T9'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1V1'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1V2'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1V3'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1V4'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1V5'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1V6'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1V7'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 1V8'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 3G3'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 4N5'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Marie Saint Ra' where zip_code = 'E8T 4P7'
and city = 'Sainte-marie-saint-raphael' and state = 'NB';
update zip_codes set city = 'Sainte Monique Lac Sa' where zip_code = 'G0W 2T0'
and city = 'Sainte-monique-lac-saint-jean' and state = 'QC';
update zip_codes set city = 'Sainte Perpetue De L''' where zip_code = 'G0R 3Z0'
and city = 'Sainte-perpetue-de-l''islet' and state = 'QC';
update zip_codes set city = 'Sainte Sabine De Bell' where zip_code = 'G0R 4H0'
and city = 'Sainte-sabine-de-bellechasse' and state = 'QC';
update zip_codes set city = 'Sainte Sophie D''Halif' where zip_code = 'G0P 1L0'
and city = 'Sainte-sophie-d''halifax' and state = 'QC';
update zip_codes set city = 'Sainte Therese De Gat' where zip_code = 'J0X 2X0'
and city = 'Sainte-therese-de-la-gatineau' and state = 'QC';
update zip_codes set city = 'San Antonio' where zip_code = '78236' and city =
'Jbsa Lackland' and state = 'TX';
update zip_codes set city = 'San Juan Indian Reservat' where zip_code = '87566'
and city = 'Ohkay Owingeh' and state = 'NM';
update zip_codes set city = 'Scotch Settlement Yor' where zip_code = 'E6L 1K2'
and city = 'Scotch Settlement York Co' and state = 'NB';
update zip_codes set city = 'Scotch Settlement Yor' where zip_code = 'E6L 1K3'
and city = 'Scotch Settlement York Co' and state = 'NB';
update zip_codes set city = 'Scotch Settlement Yor' where zip_code = 'E6L 1M4'
and city = 'Scotch Settlement York Co' and state = 'NB';
update zip_codes set city = 'Scotch Settlement Yor' where zip_code = 'E6L 1M5'
and city = 'Scotch Settlement York Co' and state = 'NB';
update zip_codes set city = 'Scotch Settlement Yor' where zip_code = 'E6L 1M6'
and city = 'Scotch Settlement York Co' and state = 'NB';
update zip_codes set city = 'Scotch Settlement Yor' where zip_code = 'E6L 1M7'
and city = 'Scotch Settlement York Co' and state = 'NB';
update zip_codes set city = 'Scotch Settlement Yor' where zip_code = 'E6L 1M8'
and city = 'Scotch Settlement York Co' and state = 'NB';
update zip_codes set city = 'Scotch Settlement Yor' where zip_code = 'E6L 1M9'
and city = 'Scotch Settlement York Co' and state = 'NB';
update zip_codes set city = 'Scotch Settlement Yor' where zip_code = 'E6L 1N1'
and city = 'Scotch Settlement York Co' and state = 'NB';
update zip_codes set city = 'Scotch Settlement Yor' where zip_code = 'E6L 1N2'
and city = 'Scotch Settlement York Co' and state = 'NB';
update zip_codes set city = 'Scotch Settlement Yor' where zip_code = 'E6L 1N3'
and city = 'Scotch Settlement York Co' and state = 'NB';
update zip_codes set city = 'Scotch Settlement Yor' where zip_code = 'E6L 1N4'
and city = 'Scotch Settlement York Co' and state = 'NB';
update zip_codes set city = 'Scotch Settlement Yor' where zip_code = 'E6L 1N5'
and city = 'Scotch Settlement York Co' and state = 'NB';
update zip_codes set city = 'Scotch Settlement Yor' where zip_code = 'E6L 1N6'
and city = 'Scotch Settlement York Co' and state = 'NB';
update zip_codes set city = 'Scotch Settlement Yor' where zip_code = 'E6L 2Z1'
and city = 'Scotch Settlement York Co' and state = 'NB';
update zip_codes set city = 'Scott A F B' where zip_code = '62225' and city =
'Scott Air Force Base' and state = 'IL';
update zip_codes set city = 'Shanty Bay' where zip_code = 'L0L 2L0' and city =
'Oro-medonte' and state = 'ON';
update zip_codes set city = 'Shediac Bridge Shedia' where zip_code = 'E4R 1N5'
and city = 'Shediac Bridge-shediac River' and state = 'NB';
update zip_codes set city = 'Shonkin' where zip_code = '59450' and city =
'Highwood' and state = 'MT';
update zip_codes set city = 'Sites' where zip_code = '95979' and city =
'Stonyford' and state = 'CA';
update zip_codes set city = 'Smartville' where zip_code = '95977' and city =
'Smartsville' and state = 'CA';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1A1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1A2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1A3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1A4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1A5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1A6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1A7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1A8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1A9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1B1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1B3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1B4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1B6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1B7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1B8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1B9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1C1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1C2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1C3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1C4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1C5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1C6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1C7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1C8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1C9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1E1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1E2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1E3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1E4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1E5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1E6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1E7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1E8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1G1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1G2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1G3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1G4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1G5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1G7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1G8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1G9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1H1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1H2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1H3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1H4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1H5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1H6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1H8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1H9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1J1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1J2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1J3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1J4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1J5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1J6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1J7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1J8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1K6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1K7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1K9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1L1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1L2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1L3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1L4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1L5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1L6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1L7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1L8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1L9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1M1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1M2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1M3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1M4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1M5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1M6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1M7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1M8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1M9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1N1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1N2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1N3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1N4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1N5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1P1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1P2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1P4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1P5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1P6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1P7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1P8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1P9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1R1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1R2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1R3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1R4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1R5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1R6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1R7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1R8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1R9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1S1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1S2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1S3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1S4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1S5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1S6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1S7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1S8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1S9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1T1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1T2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1T3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1T4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1T5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1T6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1T7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1T8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1T9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1V1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1V2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1V3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1V4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1V5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1V6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1V7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1W3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1W4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1W5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1W6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1W7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1W8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1W9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1X1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1X2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1X3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1X4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1X5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1X6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1X7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1X8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1X9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1Y1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1Y2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1Y3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1Y4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1Y5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1Y6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1Y7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1Y8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1Y9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1Z1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1Z2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1Z3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1Z4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1Z5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1Z6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1Z7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1Z8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 1Z9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2A1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2A2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2A3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2A4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2A5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2A6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2A7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2A8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2A9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2B1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2B2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2B3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2B4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2B5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2B6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2B7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2B8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2B9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2C1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2C2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2C3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2C4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2C5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2C6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2C7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2C8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2C9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2E1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2E2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2E3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2E4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2E5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2E6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2E7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2E8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2E9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2G1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2G2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2G3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2G4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2G5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2G6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2G7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2G8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2G9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2H1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2H2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2H3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2H4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2H5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2H6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2H7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2H8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2H9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2J1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2J2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2J3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2J4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2J5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2J6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2J7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2J8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2J9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2K1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2K2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2K3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2K4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2K5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2K6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2K7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2K8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2K9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2L1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2L2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2L3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2L4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2L5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2L6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2L7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2L8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2L9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2M1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2M2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2M3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2M4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2M5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2M6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2M7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2M9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2N1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2N2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2N3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2N4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2N5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2N6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2N7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2N8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2N9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2P1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2P2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2P3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2P4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2P5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2P6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2P7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2P8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2P9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2R1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2R2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2R3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2R4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2R5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2R6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2R7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2R8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2R9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2S1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2S2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2S3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2S4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2S5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2S6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2S7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2S8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2S9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2T1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2T2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2T3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2T4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2T5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2T6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2T7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2T8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2T9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2V1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2V2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2V3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2V4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2V5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2V6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2V7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2V8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2V9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2W1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2W2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2W3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2W4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2W5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2W8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2W9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2X1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2X2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2X3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2X4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2X5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2X6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2X7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2X8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2X9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2Y1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2Y2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2Y3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2Y4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2Y5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 2Y6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3A2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3A3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3A4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3A5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3A6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3A7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3A8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3A9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3B1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3B2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3B3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3B4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3B5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3B6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3B7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3B8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3B9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3C1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3C2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3C3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3C4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3C5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3C6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3C7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3C8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3C9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3E1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3E2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3E3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3E4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3E5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3E6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3E7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3E8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3E9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3G1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3G2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3G3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3G4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3G5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3G6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3G7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3G8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3G9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3H1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3H2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3H3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3H4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3H5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3H6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3H7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3H8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3H9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3J1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3J2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3J3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3J4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3J5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3J6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3J7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3J8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3J9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3K1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3K2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3K3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3K4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3K5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3K6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3K7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3K8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3K9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3L1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3L2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3L3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3L4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3L5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3L6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3L7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3L8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3L9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3M1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3M2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3M3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3M4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3M5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3M6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3M7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3M8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3M9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3N1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3N2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3N3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3N4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3N5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3N6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3N7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3N8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3N9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3P1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3P2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3P3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3P4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3P5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3P6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3P7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3P8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3P9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3R1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3R2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3R3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3R4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3R5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3R6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3R7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3R8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3R9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3S1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3S2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3S3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3S5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3S6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3S7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3S8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3S9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3T2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3T3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3T4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3T5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3T6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3T7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3T8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3T9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3V1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3V2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3V3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3V4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3V5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3V6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3V8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3V9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3W1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3W2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3W3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3W4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3W5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3W6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3W7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3W8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3W9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3X1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3X2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3X3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3X4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3X5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3X6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3X7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3X8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3X9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3Y1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3Y2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3Y3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3Y4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3Y5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3Y6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3Y7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3Y9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3Z1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3Z2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3Z3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3Z4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3Z5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3Z6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3Z7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3Z8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 3Z9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4A1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4A2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4A3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4A5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4A6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4A7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4A8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4A9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4B1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4B2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4B3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4B4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4B5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4B6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4B7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4B8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4B9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4C1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4C2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4C3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4C4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4C5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4C6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4C7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4C8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4C9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4E1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4E2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4E3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4E4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4E5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4E6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4E7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4E8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4E9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4G1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4G2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4G3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4G4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4G5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4G6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4G7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4G8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4G9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4H1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4H2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4H3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4H4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4H5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4H6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4H7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4H8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4H9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4J1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4J2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4J3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4J4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4J5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4J6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4J7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4J8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4J9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4K1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4K2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4K3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4K4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4K5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4K6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4K7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4K8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4K9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4L1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4L2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4L3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4L4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4L5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4L6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4L7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4L8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4L9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4M1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4M2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4M4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4M5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4M6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4M7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4M8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4M9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4N1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4N2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4N3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4N4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4N5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4N6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4N7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4N8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4N9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4P1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4P2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4P3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4P4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4P5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4P6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4P7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4P8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4P9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4R2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4R3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4R5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4R6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4R7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4R8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4R9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4S1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4S2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4S3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4S4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4S5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4S6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4S7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4S8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4S9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4T1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4T2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4T3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4T4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4T5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4T6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4T7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4T8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4T9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4V1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4V2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4V3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4V4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4V5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4V6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4V7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4V8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4V9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4W2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4W3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4W4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4W5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4W6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4W7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4W8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4W9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4X1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4X2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4X3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4X4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4X5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4X6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4X7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4X8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4X9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4Y1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4Y2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4Y3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4Y4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4Y5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4Y6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4Y7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4Y8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4Y9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4Z1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4Z2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4Z3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4Z4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4Z5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4Z6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4Z7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4Z8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 4Z9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5A1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5A2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5A3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5A4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5A5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5A6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5A7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5A8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5A9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5B1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5B2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5B3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5B4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5B5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5B6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5B7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5B8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5B9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5C2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5C3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5C4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5C5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5C6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5C7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5C8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5C9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5E1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5E2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5E3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5E4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5E5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5E6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5E7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5E8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5E9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5G1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5G2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5G3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5G4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5G5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5G6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5G7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5G8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5G9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5H1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5H2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5H3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5H4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5H5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5H6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5H7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5H8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5H9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5J1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5J2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5J3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5J4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5J5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5J6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5J7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5J8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5J9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5K1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5K2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5K3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5K4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5K5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5K6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5K7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5K8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5K9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5L1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5L2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5L3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5L4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5L5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5L7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5L8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5L9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5M1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5M2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5M3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5M4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5M5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5M6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5M7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5M8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5M9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5N1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5N2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5N3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5N5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5N6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5N7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5N8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5N9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5P1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5P5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5P7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5P9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5R2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5R4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5R5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5R6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5R7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5R8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5R9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5S1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5S2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5S3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5S4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5S5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5S6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5S7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5S8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5S9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5T1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5T2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5T3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5T4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5T5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5T6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5T7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5T8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5T9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5V1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5V2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5V3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5V4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5V5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5V6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5V7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5V8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5V9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5W1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5W2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5W3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5W5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5W6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5W7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5W8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5W9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5X2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5X3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5X7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5X8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5X9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5Y1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5Y2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5Y3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5Y5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5Y6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5Y8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5Y9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5Z1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5Z2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5Z3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5Z4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5Z5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5Z6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5Z7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5Z8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 5Z9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6A1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6A2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6A4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6A5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6A6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6A7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6A8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6A9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6B1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6B2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6B3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6B5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6B6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6B7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6B8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6B9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6C1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6C2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6C3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6C4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6C5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6C6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6C7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6C8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6C9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6E1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6E2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6E3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6E4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6E5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6E6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6E8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6E9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6G1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6G2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6G3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6G4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6G5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6G6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6G8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6G9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6H1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6H2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6H3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6H4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6H5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6H6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6H7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6H9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6J1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6J2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6J3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6J4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6J5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6J7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6J8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6J9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6K1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6K2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6K3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6K4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6K5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6K6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6K7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6K8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6K9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6L1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6L2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6L3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6L4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6L5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6L6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6L7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6L8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6L9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6M1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6M2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6M3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6M4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6M5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6M6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6M7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6M8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6M9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6N1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6N2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6N3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6N5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6N6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6N7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6N8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6N9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6P1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6P2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6P3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6P4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6P5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6P6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6P7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6P8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6P9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6R1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6R2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6R3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6R4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6R5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6R6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6R7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6R8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6R9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6S1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6S2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6S3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6S4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6S5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6S6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6S7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6S8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6S9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6T1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6T2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6T3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6T4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6T5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6T6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6T7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6T8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6T9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6V1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6V2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6V3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6V4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6V5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6V6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6V7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6V8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6V9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6W1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6W2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6W3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6W4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6W5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6W6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6W7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6W8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6W9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6X1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6X2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6X4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6X5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6X6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6X7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6X8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6X9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6Y1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6Y2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6Y3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6Y4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6Y5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6Y6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6Y7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6Y8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6Y9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6Z1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6Z2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6Z3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6Z4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6Z5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6Z6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6Z7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6Z8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 6Z9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7A1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7A2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7A4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7A5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7A6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7A7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7A8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7A9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7B1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7B2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7B4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7B5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7B6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7B7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7B8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7B9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7C1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7C2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7C3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7C4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7C5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7C6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7C7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7C8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7E1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7E2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7E3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7E5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7E7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7E8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7E9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7G4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7G5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7G6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7H1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7H4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7J1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7K1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7K3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7K6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7K7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7L1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7L3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7L4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7L5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7M3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7M5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7M7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7N7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7P1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7P2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7P4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7P5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7P6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7P7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7P8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7P9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7R1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7R2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7R3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7R4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7R5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7R6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7R7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7R8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7R9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7S1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7S2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7S3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7S4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7S5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7S6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7S7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7S8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7S9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7T1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7T2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7T3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7T4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7T5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7T6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7T7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7T8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7T9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7V1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7V2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7V4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7V5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7V6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7V7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7V8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7V9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7W1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7W2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7W3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7W4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7W6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7W7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7W8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7W9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7X1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7X2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7X3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7X4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7X5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7X6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7X7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7X8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7X9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7Y1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7Y2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7Y3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7Y4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7Y5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7Y6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7Y7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7Y8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7Y9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7Z1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7Z2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7Z3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7Z4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7Z5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7Z6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7Z7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7Z8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 7Z9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 8A1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 8A2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 8A3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 8A4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 8A5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 8A6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 8A7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 8A8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 8A9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 8B1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 8B2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 8B3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 8B4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 8B5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 8B6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 8B7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 8B8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 8B9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 8C1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 8C2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 8C3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 8C4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 8C5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 8C6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 8C7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 8C8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 8C9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3P 8E1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1C2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1K4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1K5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1K6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1K7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1K8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1K9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1L1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1L2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1L3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1L4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1L5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1L6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1L7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1L8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1L9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1M1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1M2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1M3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1M4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1M6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1M7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1M8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1M9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1N1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1N2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1N3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1N4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1N5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1N6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1N7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1N8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1N9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1P1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1P2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1P3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1P4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1P5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1P6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1P7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1P8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1P9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1R1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1R2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1R3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1R4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1R5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1R6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1R7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1R8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1R9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1S1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1S2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1S3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1S4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1S5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1S6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1S7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1S8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1S9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1T1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1T2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1T3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1T4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1T5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1T6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1T7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1T8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1T9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1V1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1V2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1V3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1V4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1V5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1V6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1V7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1V8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1V9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1W1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1W2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1W3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1W4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1W5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1W6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1W7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1W8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1W9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1X1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1X2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1X3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1X4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1X5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1X6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1X7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1X8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1X9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1Y1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1Y2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1Y3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1Y4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1Y5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1Y7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1Y8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1Y9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1Z1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1Z2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1Z3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1Z4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1Z5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1Z6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1Z7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1Z8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 1Z9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2A1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2A2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2A3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2A4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2A5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2A6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2A7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2A8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2A9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2B1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2B2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2B3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2B4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2B5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2B6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2B7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2B8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2B9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2C1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2C2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2C3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2C4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2C5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2C6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2C7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2C8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2C9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2E1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2E2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2E3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2E4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2E5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2E6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2E7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2E8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2E9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2G1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2G2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2G3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2G4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2G5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2G6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2G7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2G8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2G9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2H1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2H2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2H3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2H4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2H5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2H6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2H7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2H8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2H9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2J1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2J2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2J3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2J4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2J5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2J6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2J7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2J8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2J9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2K1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2K2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2K3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2K4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2K5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2K6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2K7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2K8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2K9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2L1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2L2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2L3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2L4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2L5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2L6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2L7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2L8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2L9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2M1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2M2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2M3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2M4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2M5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2M6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2M7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2M8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2M9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2N1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2N2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2N3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2N4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2N5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2N6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2N7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2N8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2N9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2P1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2P2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2P3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2P4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2P5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2P6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2P7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2P8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2P9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2R1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2R2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2R3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2R4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2R5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2R6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2R7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2R8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2R9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2S1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2S2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2S3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2S4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2S5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2S6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2S7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2S8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2S9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2T1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2T2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2T3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2T4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2T5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2T6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2T7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2T8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2T9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2V1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2V2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2V3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2V4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2V5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2V6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2V7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2V8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2V9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2W1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2W2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2W3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2W4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2W5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2W6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2W7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2W8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2W9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2X1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2X2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2X3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2X4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2X5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2X6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2X7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2X8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2X9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2Y1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2Y2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2Y3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2Y4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2Y5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2Y6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2Y7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2Y8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2Y9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2Z1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2Z2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2Z3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2Z4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2Z5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2Z6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2Z7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2Z8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 2Z9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3A1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3A2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3A3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3A4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3A5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3A6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3A7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3A8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3B1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3B2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3B3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3B4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3B5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3B6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3B7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3B8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3B9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3C1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3C2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3C6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3C7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3C8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3C9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3E3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3E4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3E9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3G1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3G9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3H1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3J1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3J2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3K5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3K6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3K7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3K8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3K9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3L1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3L2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3L3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3L4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3L5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3L6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3L7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3L8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3L9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3M1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3M2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3M3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3M4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3M5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3M6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3M7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3N7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3N8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3P9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3R1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3R2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3R9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3S1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3S2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3S3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3S4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3S5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3T1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3T2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3T3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3T4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3T5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3T6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3T7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3V7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3V8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3V9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3W1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3W2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3W3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3X2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3X3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3X4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3X5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3X6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3X7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3Y5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3Y6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3Y7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3Y8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3Y9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3Z1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3Z7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3Z8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 3Z9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4A1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4A3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4A4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4A5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4A6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4A7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4A8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4A9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4B1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4B2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4B3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4B4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4B5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4B6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4B7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4B8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4B9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4C1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4C2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4C3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4C4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4C5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4C6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4C7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4C8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4C9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4E1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4E2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4E3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4E4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4E5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4E6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4E7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4E8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4E9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4G1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4G2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4G3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4G4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4G5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4G6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4G7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4G8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4G9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4H1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4H2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4H3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4H4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4H5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4H6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4H7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4H8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4H9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4J1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4J2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4J3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4J4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4J6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4J7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4J8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4J9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4K1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4K2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4K3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4K4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4K5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4K6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4K7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4K8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4K9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4L1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4L2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4L3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4L4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4L5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4L6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4L7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4L8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4L9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4M1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4M2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4M3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4M4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4M6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4M7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4M8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4M9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4N1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4N3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4N6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4N7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4N8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4N9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4P1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4P2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4P3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4P4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4P5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4P6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4P7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4P8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4P9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4R2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4R3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4R4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4R5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4R6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4R7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4R8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4R9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4S2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4S3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4S4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4S5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4S6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4S8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4T1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4T3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4T4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4T5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4T6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4T7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4T8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4T9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4V1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4V2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4V3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4V4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4V5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4V6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4V7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4V8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4V9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4W1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4W2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4W3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4W4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4W5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4W6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4W7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4X1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4X2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4X4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4X5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4X7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4X8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4X9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4Y1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4Y2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4Y3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4Y4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4Y5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4Y6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4Y7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4Y8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4Y9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4Z2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4Z3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4Z4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4Z5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4Z6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4Z7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4Z8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 4Z9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5A2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5A3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5A4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5A5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5A6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5A7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5A8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5A9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5B1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5B2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5B3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5B4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5B5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5B6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5B7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5B8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5B9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5C1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5C2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5C3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5C4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5C5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5C6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5C7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5C8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5C9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5E1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5E2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5E3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5E4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5E5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5E6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5E7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5E8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5E9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5G1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5G2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5G3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5G4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5G5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5G6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5G7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5G8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5G9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5H1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5H2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5H5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5H6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5H7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5H9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5J1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5J2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5J3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5J5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5J7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5J8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5J9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5K1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5K3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5K4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5K5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5K7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5K8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5L1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5L2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5L4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5L5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5L6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5L7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5L8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5M1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5M2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5M3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5M4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5M5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5M6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5M7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5M8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5N1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5N2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5N3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5N4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5N5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5N6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5N7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5N8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5N9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5P1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5P2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5P3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5P4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5P5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5P6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5P7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5P8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5P9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5R1' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5R2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5R3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5R4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5R5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5R6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5R7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5R9' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5S2' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5S3' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5S4' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5S5' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5S6' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5S7' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'Sorel Tracy' where zip_code = 'J3R 5S8' and city =
'Sorel-tracy' and state = 'QC';
update zip_codes set city = 'South Easaint Bight' where zip_code = 'A0E 3B0' and
city = 'South East Bight' and state = 'NL';
update zip_codes set city = 'South International Fall' where zip_code = '56679'
and city = 'South International Falls' and state = 'MN';
update zip_codes set city = 'Stony Plain' where zip_code = 'T7Z 2A3' and city =
'Parkland County' and state = 'AB';
update zip_codes set city = 'Suburban Maryland Facili' where zip_code = '20697'
and city = 'Southern Md Facility' and state = 'MD';
update zip_codes set city = 'Suburban Maryland Facili' where zip_code = '20797'
and city = 'Southern Md Facility' and state = 'MD';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 2H6' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 2H8' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 2H9' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 2J1' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 2J2' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 2J3' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 2J4' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 2J5' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 2J6' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 2J7' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 2J8' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 2K1' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 2K2' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 2K3' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 2K6' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 2K7' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 2K8' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 2K9' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 2L1' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 2L2' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 2L3' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 2L4' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 2M8' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 2M9' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 2N1' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 2N3' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 2P7' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 2S7' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 2X9' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 3A1' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 3A2' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 3B4' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 3B5' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 3B6' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 3B7' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 3B8' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Summerfield Carleton' where zip_code = 'E7K 3G7' and
city = 'Summerfield Carleton Co' and state = 'NB';
update zip_codes set city = 'Tacoma' where zip_code = '98398' and city =
'Paradise Inn' and state = 'WA';
update zip_codes set city = 'Tacoma' where zip_code = '98438' and city = 'McChord
AFB' and state = 'WA';
update zip_codes set city = 'Tampa' where zip_code = '33664' and city = 'Time CS
BRM Unique' and state = 'FL';
update zip_codes set city = 'Thunder Bay' where zip_code = 'P7A 2S7' and city =
'Shuniah' and state = 'ON';
update zip_codes set city = 'Thunder Bay' where zip_code = 'P7A 2W3' and city =
'Shuniah' and state = 'ON';
update zip_codes set city = 'Thunder Bay' where zip_code = 'P7A 3N8' and city =
'Shuniah' and state = 'ON';
update zip_codes set city = 'Thunder Bay' where zip_code = 'P7A 3P8' and city =
'Shuniah' and state = 'ON';
update zip_codes set city = 'Thunder Bay' where zip_code = 'P7A 4A7' and city =
'Shuniah' and state = 'ON';
update zip_codes set city = 'Thunder Bay' where zip_code = 'P7A 4A8' and city =
'Shuniah' and state = 'ON';
update zip_codes set city = 'Thunder Bay' where zip_code = 'P7A 4B5' and city =
'Shuniah' and state = 'ON';
update zip_codes set city = 'Thunder Bay' where zip_code = 'P7A 4B7' and city =
'Shuniah' and state = 'ON';
update zip_codes set city = 'Thunder Bay' where zip_code = 'P7A 4C5' and city =
'Shuniah' and state = 'ON';
update zip_codes set city = 'Thunder Bay' where zip_code = 'P7A 4J9' and city =
'Shuniah' and state = 'ON';
update zip_codes set city = 'Thunder Bay' where zip_code = 'P7A 4K4' and city =
'Shuniah' and state = 'ON';
update zip_codes set city = 'Thunder Bay' where zip_code = 'P7A 4M5' and city =
'Shuniah' and state = 'ON';
update zip_codes set city = 'Thunder Bay' where zip_code = 'P7A 4M7' and city =
'Shuniah' and state = 'ON';
update zip_codes set city = 'Thunder Bay' where zip_code = 'P7A 6N3' and city =
'Shuniah' and state = 'ON';
update zip_codes set city = 'Thunder Bay' where zip_code = 'P7A 7P4' and city =
'Shuniah' and state = 'ON';
update zip_codes set city = 'Thunder Bay' where zip_code = 'P7A 7W1' and city =
'Shuniah' and state = 'ON';
update zip_codes set city = 'Thunder Bay' where zip_code = 'P7G 1E7' and city =
'Gorham' and state = 'ON';
update zip_codes set city = 'Thunder Bay' where zip_code = 'P7G 1G7' and city =
'Gorham' and state = 'ON';
update zip_codes set city = 'Thunder Bay' where zip_code = 'P7G 1H1' and city =
'Gorham' and state = 'ON';
update zip_codes set city = 'Thunder Bay' where zip_code = 'P7J 1A5' and city =
'Fort William First Nation' and state = 'ON';
update zip_codes set city = 'Thunder Bay' where zip_code = 'P7J 1H9' and city =
'Fort William First Nation' and state = 'ON';
update zip_codes set city = 'Thunder Bay' where zip_code = 'P7J 1J4' and city =
'Fort William First Nation' and state = 'ON';
update zip_codes set city = 'Thunder Bay' where zip_code = 'P7J 1J5' and city =
'Fort William First Nation' and state = 'ON';
update zip_codes set city = 'Thunder Bay' where zip_code = 'P7J 1K1' and city =
'Fort William First Nation' and state = 'ON';
update zip_codes set city = 'Thunder Bay' where zip_code = 'P7J 1K3' and city =
'Fort William First Nation' and state = 'ON';
update zip_codes set city = 'Thunder Bay' where zip_code = 'P7J 1K6' and city =
'Fort William First Nation' and state = 'ON';
update zip_codes set city = 'Thunder Bay' where zip_code = 'P7J 1K7' and city =
'Fort William First Nation' and state = 'ON';
update zip_codes set city = 'Thunder Bay' where zip_code = 'P7J 1K8' and city =
'Fort William First Nation' and state = 'ON';
update zip_codes set city = 'Thunder Bay' where zip_code = 'P7J 1K9' and city =
'Fort William First Nation' and state = 'ON';
update zip_codes set city = 'Thunder Bay' where zip_code = 'P7J 1L2' and city =
'Fort William First Nation' and state = 'ON';
update zip_codes set city = 'Thunder Bay' where zip_code = 'P7J 1L3' and city =
'Fort William First Nation' and state = 'ON';
update zip_codes set city = 'Thunder Bay' where zip_code = 'P7J 1L4' and city =
'Fort William First Nation' and state = 'ON';
update zip_codes set city = 'Thunder Bay' where zip_code = 'P7J 1L6' and city =
'Fort William First Nation' and state = 'ON';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 1C6'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 1C7'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 1H6'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 1H7'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 1Y1'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 2A6'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 2A7'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 2A8'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 2A9'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 2C2'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 2C3'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 2P9'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 2R1'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 2R3'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 2R4'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 2V9'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 2W1'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 2W3'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 2W4'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 2W5'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 2W6'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 2X2'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 2X3'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 2X4'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 2X5'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 2X6'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 2X7'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 2X8'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 2X9'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 2Y1'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 2Y2'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 2Y3'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 2Y4'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 2Y5'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 2Y6'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 2Y7'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 2Y8'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 2Y9'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 3C9'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 3E1'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 3E2'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 3E3'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 3E4'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 3E6'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 3L7'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 3L8'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 3M9'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 3N4'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 3N5'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 3N9'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 3P1'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 3P2'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 3P3'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 3S1'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 3Y2'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 3Y3'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 3Y4'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 4M8'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 4M9'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 4P6'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 4P7'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 4V4'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 4V5'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 4V6'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 4V7'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 4V8'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 4W6'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 4W7'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 4Z2'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 4Z3'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 5B8'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 5K1'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 5L1'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 5L2'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 5L6'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Tobique Firsaint Nati' where zip_code = 'E7H 5M7'
and city = 'Tobique First Nation' and state = 'NB';
update zip_codes set city = 'Universal City' where zip_code = '78150' and city =
'Jbsa Randolph' and state = 'TX';
update zip_codes set city = 'Vimont' where zip_code = 'H7K 3G5' and city =
'Vimont' and state = 'QC';
update zip_codes set city = 'Vimont' where zip_code = 'H7M 2N7' and city =
'Vimont' and state = 'QC';
update zip_codes set city = 'Vimont' where zip_code = 'H7M 2N8' and city =
'Vimont' and state = 'QC';
update zip_codes set city = 'Vimont' where zip_code = 'H7M 2P4' and city =
'Vimont' and state = 'QC';
update zip_codes set city = 'Vimont' where zip_code = 'H7M 2P6' and city =
'Vimont' and state = 'QC';
update zip_codes set city = 'Vimont' where zip_code = 'H7M 2P9' and city =
'Vimont' and state = 'QC';
update zip_codes set city = 'Vimont' where zip_code = 'H7M 2R1' and city =
'Vimont' and state = 'QC';
update zip_codes set city = 'Vimont' where zip_code = 'H7M 2R3' and city =
'Vimont' and state = 'QC';
update zip_codes set city = 'Vimont' where zip_code = 'H7M 2R4' and city =
'Vimont' and state = 'QC';
update zip_codes set city = 'Vimont' where zip_code = 'H7M 2R5' and city =
'Vimont' and state = 'QC';
update zip_codes set city = 'Vimont' where zip_code = 'H7M 2Y2' and city =
'Vimont' and state = 'QC';
update zip_codes set city = 'Vimont' where zip_code = 'H7M 2Y3' and city =
'Vimont' and state = 'QC';
update zip_codes set city = 'Vimont' where zip_code = 'H7M 5Y6' and city =
'Vimont' and state = 'QC';
update zip_codes set city = 'Washington Township' where zip_code = '07676' and
city = 'Township Of Washington' and state = 'NJ';
update zip_codes set city = 'Washington' where zip_code = '20373' and city =
'Naval Anacost Annex' and state = 'DC';
update zip_codes set city = 'Waterville Carleton C' where zip_code = 'E7P 1B4'
and city = 'Waterville Carleton Co' and state = 'NB';
update zip_codes set city = 'Waterville Carleton C' where zip_code = 'E7P 1B5'
and city = 'Waterville Carleton Co' and state = 'NB';
update zip_codes set city = 'Waterville Carleton C' where zip_code = 'E7P 1B6'
and city = 'Waterville Carleton Co' and state = 'NB';
update zip_codes set city = 'Waterville Carleton C' where zip_code = 'E7P 1B7'
and city = 'Waterville Carleton Co' and state = 'NB';
update zip_codes set city = 'Waterville Carleton C' where zip_code = 'E7P 1B8'
and city = 'Waterville Carleton Co' and state = 'NB';
update zip_codes set city = 'Waterville Carleton C' where zip_code = 'E7P 1B9'
and city = 'Waterville Carleton Co' and state = 'NB';
update zip_codes set city = 'Waterville Carleton C' where zip_code = 'E7P 1C1'
and city = 'Waterville Carleton Co' and state = 'NB';
update zip_codes set city = 'Waterville Carleton C' where zip_code = 'E7P 1C2'
and city = 'Waterville Carleton Co' and state = 'NB';
update zip_codes set city = 'Waterville Carleton C' where zip_code = 'E7P 1C3'
and city = 'Waterville Carleton Co' and state = 'NB';
update zip_codes set city = 'Waterville Carleton C' where zip_code = 'E7P 1C4'
and city = 'Waterville Carleton Co' and state = 'NB';
update zip_codes set city = 'Waterville Carleton C' where zip_code = 'E7P 1C5'
and city = 'Waterville Carleton Co' and state = 'NB';
update zip_codes set city = 'Waterville Carleton C' where zip_code = 'E7P 1H1'
and city = 'Waterville Carleton Co' and state = 'NB';
update zip_codes set city = 'Waterville Carleton C' where zip_code = 'E7P 1H2'
and city = 'Waterville Carleton Co' and state = 'NB';
update zip_codes set city = 'Waterville Carleton C' where zip_code = 'E7P 1H3'
and city = 'Waterville Carleton Co' and state = 'NB';
update zip_codes set city = 'Waterville Carleton C' where zip_code = 'E7P 1H4'
and city = 'Waterville Carleton Co' and state = 'NB';
update zip_codes set city = 'Waterville Carleton C' where zip_code = 'E7P 1H5'
and city = 'Waterville Carleton Co' and state = 'NB';
update zip_codes set city = 'Waterville Carleton C' where zip_code = 'E7P 1H6'
and city = 'Waterville Carleton Co' and state = 'NB';
update zip_codes set city = 'Waterville Carleton C' where zip_code = 'E7P 1H7'
and city = 'Waterville Carleton Co' and state = 'NB';
update zip_codes set city = 'Waterville Carleton C' where zip_code = 'E7P 1H8'
and city = 'Waterville Carleton Co' and state = 'NB';
update zip_codes set city = 'Waterville Carleton C' where zip_code = 'E7P 1H9'
and city = 'Waterville Carleton Co' and state = 'NB';
update zip_codes set city = 'Waterville Carleton C' where zip_code = 'E7P 1J1'
and city = 'Waterville Carleton Co' and state = 'NB';
update zip_codes set city = 'Waterville Carleton C' where zip_code = 'E7P 2T3'
and city = 'Waterville Carleton Co' and state = 'NB';
update zip_codes set city = 'Waterville Carleton C' where zip_code = 'E7P 2T4'
and city = 'Waterville Carleton Co' and state = 'NB';
update zip_codes set city = 'Waterville Carleton C' where zip_code = 'E7P 2T5'
and city = 'Waterville Carleton Co' and state = 'NB';
update zip_codes set city = 'Waterville Carleton C' where zip_code = 'E7P 2T6'
and city = 'Waterville Carleton Co' and state = 'NB';
update zip_codes set city = 'Waterville Carleton C' where zip_code = 'E7P 2T7'
and city = 'Waterville Carleton Co' and state = 'NB';
update zip_codes set city = 'Waterville Carleton C' where zip_code = 'E7P 2T8'
and city = 'Waterville Carleton Co' and state = 'NB';
update zip_codes set city = 'Waterville Carleton C' where zip_code = 'E7P 2T9'
and city = 'Waterville Carleton Co' and state = 'NB';
update zip_codes set city = 'Waterville Carleton C' where zip_code = 'E7P 2V1'
and city = 'Waterville Carleton Co' and state = 'NB';
update zip_codes set city = 'Waterville Carleton C' where zip_code = 'E7P 2V2'
and city = 'Waterville Carleton Co' and state = 'NB';
update zip_codes set city = 'Waterville Carleton C' where zip_code = 'E7P 2V3'
and city = 'Waterville Carleton Co' and state = 'NB';
update zip_codes set city = 'Waterville Carleton C' where zip_code = 'E7P 3C1'
and city = 'Waterville Carleton Co' and state = 'NB';
update zip_codes set city = 'Waterville Carleton C' where zip_code = 'E7P 3G1'
and city = 'Waterville Carleton Co' and state = 'NB';
update zip_codes set city = 'Waterville Carleton C' where zip_code = 'E7P 3J8'
and city = 'Waterville Carleton Co' and state = 'NB';
update zip_codes set city = 'Wemotaci' where zip_code = 'G0X 3R0' and city =
'Wemotaci' and state = 'QC';
update zip_codes set city = 'Wendake' where zip_code = 'G0A 4V0' and city =
'Wendake' and state = 'QC';
update zip_codes set city = 'Wesaint Bay Firsaint' where zip_code = 'P0P 1G0' and
city = 'M''chigeeng' and state = 'ON';
update zip_codes set city = 'Wesaint Florenceville' where zip_code = 'E7L 3P6'
and city = 'West Florenceville' and state = 'NB';
update zip_codes set city = 'Wesaint Florenceville' where zip_code = 'E7L 3P7'
and city = 'West Florenceville' and state = 'NB';
update zip_codes set city = 'Wesaint Florenceville' where zip_code = 'E7L 3P8'
and city = 'West Florenceville' and state = 'NB';
update zip_codes set city = 'Wesaint Porters Lake' where zip_code = 'B3E 1K9' and
city = 'West Porters Lake' and state = 'NS';
update zip_codes set city = 'Wesaint Porters Lake' where zip_code = 'B3E 1L1' and
city = 'West Porters Lake' and state = 'NS';
update zip_codes set city = 'Wesaint Porters Lake' where zip_code = 'B3E 1L2' and
city = 'West Porters Lake' and state = 'NS';
update zip_codes set city = 'Wesaint Porters Lake' where zip_code = 'B3E 1L3' and
city = 'West Porters Lake' and state = 'NS';
update zip_codes set city = 'Wesaint Porters Lake' where zip_code = 'B3E 1L4' and
city = 'West Porters Lake' and state = 'NS';
update zip_codes set city = 'Wesaint Porters Lake' where zip_code = 'B3E 1L5' and
city = 'West Porters Lake' and state = 'NS';
update zip_codes set city = 'Wesaint Porters Lake' where zip_code = 'B3E 1L6' and
city = 'West Porters Lake' and state = 'NS';
update zip_codes set city = 'Wesaint Porters Lake' where zip_code = 'B3E 1L7' and
city = 'West Porters Lake' and state = 'NS';
update zip_codes set city = 'Wesaint Porters Lake' where zip_code = 'B3E 1M8' and
city = 'West Porters Lake' and state = 'NS';
update zip_codes set city = 'Wesaint Porters Lake' where zip_code = 'B3E 1N2' and
city = 'West Porters Lake' and state = 'NS';
update zip_codes set city = 'Wesaint Porters Lake' where zip_code = 'B3E 1N4' and
city = 'West Porters Lake' and state = 'NS';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R2P 2T6' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R2P 2V2' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R2P 2V9' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R2P 2W1' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R2P 2W5' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R2V 4E8' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R2V 4E9' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R2V 4G1' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R2V 4G2' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R2V 4G3' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R2V 4R8' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R2V 4R9' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R2V 4S1' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R2V 4S2' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R2V 4S3' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R2V 4S4' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R2V 4S5' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R2V 4T3' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R2V 4T4' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R2V 4T9' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R2V 4W2' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 1A1' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 1A2' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 1A3' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 1A4' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 1A5' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 1A6' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 1A7' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 1A8' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 1A9' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 1B1' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 1B2' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 1B3' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 1B4' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 1B5' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 1B6' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 1B7' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 1B8' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 1B9' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 1C1' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 1C2' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 1C3' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 1C4' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 2A1' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 2A2' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 2A3' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 2A4' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 2A5' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 2A6' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 2A7' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 2A8' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 2A9' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 3A1' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 3A2' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 3A3' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 3A4' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 3A5' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 3A6' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 3A7' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 3A8' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 3A9' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 4A1' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 4A2' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 4A3' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 4A4' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 4A5' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 4A6' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 4A7' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 4A8' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 4A9' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 5A1' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 5A2' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 5A3' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 5A4' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 5A5' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 5A6' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 5A7' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 5A8' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 5A9' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 6A1' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 6A3' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 6A4' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 6A5' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 6A6' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 6A7' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 6A8' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 6A9' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 7A1' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 7A2' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 7A3' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 7A4' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 7A5' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 7A6' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 7A7' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 7A8' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 7A9' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 8A1' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 8A2' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 8A3' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 8A4' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 8A5' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 8A6' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 8A7' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 8A8' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 8A9' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 9A1' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 9A2' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 9A3' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 9A4' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 9A5' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 9A6' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 9A7' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 9A8' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Wesaint Saint Paul' where zip_code = 'R4A 9A9' and
city = 'West St Paul' and state = 'MB';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1A1' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1A2' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1A3' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1A4' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1A5' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1A6' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1A7' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1A8' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1A9' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1B1' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1B2' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1B3' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1B4' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1B5' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1B6' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1B7' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1B8' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1B9' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1C1' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1C2' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1C3' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1C4' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1C5' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1C6' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1C7' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1C8' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1C9' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1E1' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1E2' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1E3' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1E4' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1E5' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1E6' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1E7' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1E8' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1E9' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1G1' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1G2' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1G3' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1G4' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1G6' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1G7' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1G8' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1G9' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1H1' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1H2' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1H3' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1H4' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1H5' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1H6' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1H7' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1H8' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1H9' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1J1' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1J2' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1J3' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1J4' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1J5' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1J6' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1J7' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1J8' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1J9' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1K5' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1K7' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1L3' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1L4' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1L5' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1L6' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1L7' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1L8' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1L9' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1M1' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1M2' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1M3' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1M4' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1M5' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1M6' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1M7' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1M8' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1M9' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1N1' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1N2' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1N3' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1N4' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1N5' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1N6' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1N7' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1N8' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1N9' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1P1' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1P2' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1P3' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1P4' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1P5' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1P6' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1P7' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1P8' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1P9' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1R1' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1R2' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1R3' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1R6' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1R7' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1R8' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1R9' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1S1' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1S2' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1S3' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1S4' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1S5' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1S6' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1S7' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1S8' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1S9' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1T1' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1T2' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1T3' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1T4' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1T5' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1T6' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1T7' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1T8' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1T9' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1V1' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1V5' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1V6' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1V7' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1V8' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1V9' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1W1' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1W2' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1W3' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1W4' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1W5' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1W6' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1W7' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1W8' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1W9' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1X1' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1X2' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1X3' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1X4' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1X5' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1X7' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1X9' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1Y1' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1Y3' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1Y5' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1Y6' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1Y7' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1Y8' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1Y9' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 1Z1' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2B1' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2B4' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2B5' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2B6' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2B7' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2B8' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2B9' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2C1' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2C2' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2C3' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2C4' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2C5' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2C6' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2C7' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2C9' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2E4' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2E6' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2E8' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2E9' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2G1' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2G2' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2G3' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2G5' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2G6' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2H6' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2H7' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2H8' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2H9' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2J1' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2J2' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2J3' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2J4' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2J5' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2J6' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2J7' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2J8' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2J9' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2K1' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2K2' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2K3' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2K4' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2K5' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2K6' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2K7' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2K8' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2K9' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2L1' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2L4' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2L5' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2L6' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2L8' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2L9' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2M1' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2M2' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2M3' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2M4' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2M7' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2M8' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2M9' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2N1' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2N4' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2N5' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2N6' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2N7' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2N8' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2N9' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2P1' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2P2' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2P6' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2P7' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2P8' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2P9' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2R1' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2R2' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2R3' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2R5' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2R6' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2R7' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2R8' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2R9' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2S1' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2S3' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2S5' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2S6' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2S7' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2S8' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2S9' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2T1' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2T3' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2T4' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2T5' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2T6' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2T7' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2T8' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2V1' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2V2' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2V4' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2V5' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2V6' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2V7' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2V8' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2V9' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2W1' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2W2' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2W4' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2W5' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2W6' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2W7' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2W8' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2W9' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2X1' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2X2' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2X3' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2X4' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2X5' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2X6' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2X7' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2X8' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'Westbank' where zip_code = 'V4T 2Y3' and city =
'West Kelowna' and state = 'BC';
update zip_codes set city = 'White Sands Missile Rang' where zip_code = '88002'
and city = 'White Sands Missile Range' and state = 'NM';
update zip_codes set city = 'Whiteman A F B' where zip_code = '65305' and city =
'Whiteman Air Force Base' and state = 'MO';
update zip_codes set city = 'Whiting' where zip_code = '08759' and city =
'Manchester Township' and state = 'NJ';
update zip_codes set city = 'Williamstown Carleton' where zip_code = 'E7K 1H1'
and city = 'Williamstown Carleton Co' and state = 'NB';
update zip_codes set city = 'Williamstown Carleton' where zip_code = 'E7K 1H2'
and city = 'Williamstown Carleton Co' and state = 'NB';
update zip_codes set city = 'Williamstown Carleton' where zip_code = 'E7K 1H3'
and city = 'Williamstown Carleton Co' and state = 'NB';
update zip_codes set city = 'Williamstown Carleton' where zip_code = 'E7K 1J9'
and city = 'Williamstown Carleton Co' and state = 'NB';
update zip_codes set city = 'Williamstown Carleton' where zip_code = 'E7K 1S3'
and city = 'Williamstown Carleton Co' and state = 'NB';
update zip_codes set city = 'Williamstown Carleton' where zip_code = 'E7K 1S4'
and city = 'Williamstown Carleton Co' and state = 'NB';
update zip_codes set city = 'Williamstown Carleton' where zip_code = 'E7K 1S5'
and city = 'Williamstown Carleton Co' and state = 'NB';
update zip_codes set city = 'Williamstown Carleton' where zip_code = 'E7K 1S6'
and city = 'Williamstown Carleton Co' and state = 'NB';
update zip_codes set city = 'Williamstown Carleton' where zip_code = 'E7K 1S7'
and city = 'Williamstown Carleton Co' and state = 'NB';
update zip_codes set city = 'Williamstown Carleton' where zip_code = 'E7K 1S8'
and city = 'Williamstown Carleton Co' and state = 'NB';
update zip_codes set city = 'Williamstown Carleton' where zip_code = 'E7K 1S9'
and city = 'Williamstown Carleton Co' and state = 'NB';
update zip_codes set city = 'Williamstown Carleton' where zip_code = 'E7K 2A3'
and city = 'Williamstown Carleton Co' and state = 'NB';
update zip_codes set city = 'Williamstown Carleton' where zip_code = 'E7K 2A4'
and city = 'Williamstown Carleton Co' and state = 'NB';
update zip_codes set city = 'Williamstown Carleton' where zip_code = 'E7K 2A5'
and city = 'Williamstown Carleton Co' and state = 'NB';
update zip_codes set city = 'Williamstown Carleton' where zip_code = 'E7K 2A6'
and city = 'Williamstown Carleton Co' and state = 'NB';
update zip_codes set city = 'Williamstown Carleton' where zip_code = 'E7K 2A7'
and city = 'Williamstown Carleton Co' and state = 'NB';
update zip_codes set city = 'Williamstown Carleton' where zip_code = 'E7K 2A8'
and city = 'Williamstown Carleton Co' and state = 'NB';
update zip_codes set city = 'Williamstown Carleton' where zip_code = 'E7K 3H1'
and city = 'Williamstown Carleton Co' and state = 'NB';
update zip_codes set city = 'Winnipeg' where zip_code = 'R2P 0G5' and city =
'West St Paul' and state = 'MB';
update zip_codes set city = 'Winnipeg' where zip_code = 'R2P 1L4' and city =
'West St Paul' and state = 'MB';
update zip_codes set city = 'Winnipeg' where zip_code = 'R2P 2V7' and city =
'West St Paul' and state = 'MB';
update zip_codes set city = 'Winnipeg' where zip_code = 'R4A 6A2' and city =
'West St Paul' and state = 'MB';
update zip_codes set city = 'Woodstock Firsaint Na' where zip_code = 'E7M 3B4'
and city = 'Woodstock First Nation' and state = 'NB';
update zip_codes set city = 'Woodstock Firsaint Na' where zip_code = 'E7M 4H9'
and city = 'Woodstock First Nation' and state = 'NB';
update zip_codes set city = 'Woodstock Firsaint Na' where zip_code = 'E7M 4J1'
and city = 'Woodstock First Nation' and state = 'NB';
update zip_codes set city = 'Woodstock Firsaint Na' where zip_code = 'E7M 4J2'
and city = 'Woodstock First Nation' and state = 'NB';
update zip_codes set city = 'Woodstock Firsaint Na' where zip_code = 'E7M 4J3'
and city = 'Woodstock First Nation' and state = 'NB';
update zip_codes set city = 'Woodstock Firsaint Na' where zip_code = 'E7M 4J4'
and city = 'Woodstock First Nation' and state = 'NB';
update zip_codes set city = 'Woodstock Firsaint Na' where zip_code = 'E7M 4J5'
and city = 'Woodstock First Nation' and state = 'NB';
update zip_codes set city = 'Woodstock Firsaint Na' where zip_code = 'E7M 4J6'
and city = 'Woodstock First Nation' and state = 'NB';
update zip_codes set city = 'Woodstock Firsaint Na' where zip_code = 'E7M 4J7'
and city = 'Woodstock First Nation' and state = 'NB';
update zip_codes set city = 'Woodstock Firsaint Na' where zip_code = 'E7M 4J8'
and city = 'Woodstock First Nation' and state = 'NB';
update zip_codes set city = 'Woodstock Firsaint Na' where zip_code = 'E7M 4J9'
and city = 'Woodstock First Nation' and state = 'NB';
update zip_codes set city = 'Woodstock Firsaint Na' where zip_code = 'E7M 4K1'
and city = 'Woodstock First Nation' and state = 'NB';
update zip_codes set city = 'Woodstock Firsaint Na' where zip_code = 'E7M 4K2'
and city = 'Woodstock First Nation' and state = 'NB';
update zip_codes set city = 'Woodstock Firsaint Na' where zip_code = 'E7M 4K3'
and city = 'Woodstock First Nation' and state = 'NB';
update zip_codes set city = 'Woodstock Firsaint Na' where zip_code = 'E7M 4K4'
and city = 'Woodstock First Nation' and state = 'NB';
update zip_codes set city = 'Woodstock Firsaint Na' where zip_code = 'E7M 4K5'
and city = 'Woodstock First Nation' and state = 'NB';
update zip_codes set city = 'Woodstock Firsaint Na' where zip_code = 'E7M 4K6'
and city = 'Woodstock First Nation' and state = 'NB';
update zip_codes set city = 'Woodstock Firsaint Na' where zip_code = 'E7M 4K7'
and city = 'Woodstock First Nation' and state = 'NB';
update zip_codes set city = 'Wyevale' where zip_code = 'L0L 2T0' and city =
'Tiny' and state = 'ON';
update zip_codes set city = 'Yarmouth' where zip_code = '04097' and city = 'North
Yarmouth' and state = 'ME';
update zip_codes set city = 'Yellow Quill' where zip_code = 'S0A 3A0' and city =
'Yellow Quill' and state = 'SK';
update zip_codes set city = 'Yellowstone National Par' where zip_code = '82190'
and city = 'Yellowstone National Park' and state = 'WY';

ALTER TABLE dispatch_zones__zip_codes__links DROP CONSTRAINT IF EXISTS


fk_dispatch_zones__zip_codes__links__zip_codes;
ALTER TABLE dispatch_zones__zip_codes__links
ADD CONSTRAINT fk_dispatch_zones__zip_codes__links__zip_codes FOREIGN KEY
(zip_code_id)
REFERENCES zip_codes (id) MATCH FULL
ON UPDATE NO ACTION ON DELETE RESTRICT;

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy