sql - Is it possible to replace data in a column in ms-access? -


In the MS-Access database, is it possible to convert an SQL query with a number in the column to add 2 to the original number ie, All the numbers in a column should be replaced by the original number plus 2

  update myTable SET myColumn = myColumn + 2  

Comments

Popular posts from this blog

iphone - How do I make a UIPickerView in a UIActionSheet -

java - Is there an object like a "Set" that can contain only unique string values, but also contain a count on the number of occurrences of the string value? -