I have the following query
UPDATE teste SET
equacao = 'X*254/1024+15.2',
zerar = False,
MinValid = 0.00
WHERE id = 1
RETURNING *
It runs normally, but when I get to the database the plus +
sign disappears: X*254/1024 15.2
.
How do I change the query so that the plus sign is saved as a character?