that would change all values in that column within the table, are you sure you do not want a where clause to prevent that from happening? The statement should work, atleast in MSSQL.
"Return" is a reserved word in mysql. See dev.mysql.com/doc/refman/5.0/en/reserved-words.html use syntax below or rename field name update Tracking set `Return`=`Return`+1
You could try to end your statement with a Update Tracking Set Return = Return + 1 LIMIT 1 If I remember correctly this should limit the Mysql update statement to 1 record. But keep in mind that you can't keep track of the updated record since this would only change the first record that the storage engine returns, without corresponding where and ORDER BY you have no control since the storage engine does not guarantee the ordering of the data unless specified via the statement to do so.