I am trying to update the value of a column where it matches a certain userid, but it keeps giving a syntax error.
userid
UPDATE user SET balance =
You need to escape user since it is a reserved word. Try
user
UPDATE "user" SET balance = 15000.000000000 WHERE id = 11203;