I have a table called People, when i describe People i get the following output
| Name | varchar(50) | YES | | NULL |
My sql update statement :
update Person set Name='xxx' AND Age= '33' ;
The error :
ERROR 1292 (22007): Truncated incorrect DOUBLE value: 'xxx'
Use below query
update People set Name='xxx' , Age= '33' where condition;