how to update rows in mysql code example

Example 1: update all rows mysql

UPDATE tableName SET columnName = yourValue;
#to update multiple columns:
UPDATE tableName SET column1 = value1, column2 = value2; #and so on

Example 2: mysql update add to existing value

mysql> UPDATE tableName SET sometotal = sometotal+10 WHERE Id = 4;

Example 3: how to update rows from a table when certain conditions are met in mysql

UPDATE table_name
SET column1 = value1, column2 = value2
WHERE condition <= condition AND condition != condition;

Tags:

Sql Example