The simple question is, how do you increment a field value in a MS Query by 1 ? I am trying to add 1 (+1) to an int column in my SQL Server database using a paramet
int
"UPDATE TableName SET TableField = TableField + 1 WHERE SomeFilterField = @ParameterID"
You need both a value and a field to assign it to. The value is TableField + 1, so the assignment is:
TableField + 1
SET TableField = TableField + 1