How remove same 1st letter from many records?

  • Thread starter Thread starter Ian Elliott
  • Start date Start date
I

Ian Elliott

Thanks in advance.
I have a one field query that has records like:
VN1200003
VN1200005
....
VN1988499
I would like to get rid of the 'V' from each record.
All help appreciated!
Thanks again.
 
you could use something like this

varsql = "UPDATE TABLE SET FIELD = Right(FIELD,Len(Field)-1)
 
Back
Top