G
Guest
trying to split zip code into zip and zip 4, but not all records have +4 so I
added a where clause, but I still get warned that all my rows will be
updated. What's wrong?
UPDATE [Copy of MEMBER] SET [Copy of MEMBER].ZipCode = Left([ZipCode],5),
[Copy of MEMBER].Zip4 = Right([ZipCode],4)
WHERE ((Len("ZipCode")>"6"));
added a where clause, but I still get warned that all my rows will be
updated. What's wrong?
UPDATE [Copy of MEMBER] SET [Copy of MEMBER].ZipCode = Left([ZipCode],5),
[Copy of MEMBER].Zip4 = Right([ZipCode],4)
WHERE ((Len("ZipCode")>"6"));