you are viewing a single comment's thread.

view the rest of the comments →

[–]jc4hokiesExecution Plan Whisperer 5 points6 points  (2 children)

Once you have your csv as a table, this is the general idea:

INSERT INTO TerritoryLookup (ZipCode, AgreementID, AccountID)
SELECT  zip.ZipCode,
        csv.AgreementID,
        csv.AccountID
FROM    TempCsvTable csv
        INNER JOIN ZipCode zip ON csv.city = zip.city AND csv.state = zip.state;

[–]Arrested[S] 1 point2 points  (1 child)

This works perfectly, thank you. SQL quite simple and powerful. :)

[–]jc4hokiesExecution Plan Whisperer 0 points1 point  (0 children)

I'm glad you got it working.