I have a table within it I have a field which contains postcodes
What I want to do it update all the postcodes within the field to have the same format. The problem is that I have no influence of controlling what actually is inputted into the field.
All i can do is 'clean' up the data in the field.
Is it possible to update the field from the following format:
B68 7RG
to
B68 7RG
I tried UPDATE [WL NonRes BackUp] SET [WL NonRes BackUp].PostCode = "*** ***"
WHERE ((([WL NonRes BackUp].PostCode) Like "*** ***"
);
But is replaces everything with ***?
What I want to do it update all the postcodes within the field to have the same format. The problem is that I have no influence of controlling what actually is inputted into the field.
All i can do is 'clean' up the data in the field.
Is it possible to update the field from the following format:
B68 7RG
to
B68 7RG
I tried UPDATE [WL NonRes BackUp] SET [WL NonRes BackUp].PostCode = "*** ***"
WHERE ((([WL NonRes BackUp].PostCode) Like "*** ***"
But is replaces everything with ***?