How remove same 1st letter from many records?

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.
 
D

Dave

you could use something like this

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

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top