I have a database with a rate column with numerical data. I would like to update the data in this column by adding 20 to each.
I am trying,
UPDATE 'refinance' SET 'rate' = rate + 20
I get a syntax error when I simulate this query :
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''refinance' SET 'rate' = rate + 20' at line 1
Thanks for the input on this. Eric