Question : remove a letter off front of numbers in a field

i am attaching database - with a building# field.
Buidling numbers are coming to me with an S in the front of number-
like s2, s45, s159, etc...
can I write an update or delete query to take s off of front of number
thank you
Attachments:
 
remove s
 

Answer : remove a letter off front of numbers in a field

UPDATE yourTable
SET yourFieldName = Mid(yourFieldName, 2)
WHERE left(yourFieldName, 1) = "s"
Random Solutions  
 
programming4us programming4us