I'm very new to Update query & need some help.
I have a table with policy numbers (polno) which are in the format of
"ABC 123456789"
How do I create an update query to remove the ABC at the front of the policy number
I tried this but it didnt work
UPDATE [Renewal MI] SET [Renewal MI].polno = "polno"
WHERE ((([Renewal MI].polno)=Right([polno],9)));
am I close???
I have a table with policy numbers (polno) which are in the format of
"ABC 123456789"
How do I create an update query to remove the ABC at the front of the policy number
I tried this but it didnt work
UPDATE [Renewal MI] SET [Renewal MI].polno = "polno"
WHERE ((([Renewal MI].polno)=Right([polno],9)));
am I close???