SQL Server: Update Zips, see if zips exist, Update Carrier to correspond with Zips -
vcaccountnum | izone | vczipstart | vczipend | vccarrier1 | vccarrier2 | vcterminal1 | vcterminal2 | das
i want see if zip exists out of 6000 zips. zipend
, zipstart
same. if abc carrier either/or vccarrier1
or vccarrier2
vcterminal1
and/or vcterminal2
need updated new code, example jfk.
i need flag das
y or n depending on zip.
i thinking of using in of zips.
i have every often. looking @ way make sp or 1 done without spending day on it.
thank you,
i think searching query this:
update yourtable set vcterminal1 = case when vccarrier1 = 'abc carrier' 'newcode' else vcterminal1 end, vcterminal2 = case when vccarrier2 = 'abc carrier' 'newcode' else vcterminal2 end, das = case when 'zip code' = 'depeneds' 'y' else 'n' end 'zip code' between vczipstart , vczipend
Comments
Post a Comment