Adding Prefixes to existing data

  • Thread starter Thread starter d170868
  • Start date Start date
Use an update query. Its SQL could read

UPDATE yourTable SET yourField = '1S-' & yourField;

this will change all records in the table. If you want to change a
certain subset, be sure to add a WHERE clause.
 
Back
Top