I'm running the following sql in my mysql:
UPDATE 'cadastro' SET 'pontos'= 'pontos + 1' WHERE id = 102;
I need to update the column table every time the column table is made that is of type int(11)
When I run this sql
it does not return an error, however, the pontos
field always continues with a value of 1.