Question : MS Access 2007 Query

I need to delete the first three characters in a string within a column of a table "AR ".  How can I do this within a query?

Answer : MS Access 2007 Query

that will remove "AR  " that exists anywhere in the field

update tablex
set [FldX]= mid([Fldx],4)
where Left([fldX],3)="AR "
Random Solutions  
 
programming4us programming4us