I am trying to update the value of a column where it matches a certain userid, but it keeps giving a syntax error.
UPDATE user
SET balance = 15000.000000000
WHERE id = 11203;
The table called user has many rows with two columns, balance and id. I am trying to edit the balance of the user id in the code.
create tablestatement.