So earlier I had a question about adding a 0 to the front of a field when it was 4 digits instead of 5.
The whole point was for me to end up with a select statement to update into the table, into another columns
concatenate a zero onto sql server select value shows 4 digits still and not 5
Code that I wrote that I hoped would work, but It ended up just instead doing it is inserting the same data
fullzip is want the new zip code should look like
SELECT TOP 1000 [ZIP],
right( '00000'+convert( varchar(5),ZIP) , 5) as fullzip
,[ZIP_Name]
FROM [CC].[dbo].[ServiceableZipCodes]
result of select
Zip fullZip ZIP_Name
2030 02030 Dover
However, my update statement that I created looks like this and it did NOT add the zero :/
UPDATE t1
SET t1.ZipCode = right( '00000'+convert( varchar(5),t2.ZIP) , 5)
FROM ServiceableZipCodes t1 INNER JOIN ServiceableZipCodes t2 on
t1.Zip = t2.zip
WHERE t1.ZIP_Name = t2.ZIP_NAME
Now the new column of ZipCode
that i inserted into from the update , it is only 4 characters
DataTypes
ZipCode int
ZIP float
So it looks like this
ZipCode Zip ZIP_Name
2030 2030 Dover
What am I doing wrong?