Sono un po 'nuovo per Postgres. Voglio prendere un valore (che è un numero intero) in un campo in una tabella postgres e incrementarlo di uno. Ad esempio, se la tabella "totali" avesse 2 colonne, "nome" e "totale" e Bill avesse un totale di 203, quale sarebbe l'istruzione SQL che userei per spostare il totale di Bill a 204?
ERROR: operator does not exist: character varying + integer LINE 2: SET total = total + 1
Risolto lanciando il valore come numero intero in questo modoSET total = total::int + 1