UPDATE table1
SET column2 = 'Your Text', column3 = 45000
WHERE column1=5
update PS_USERS set locked ='N' where ID=1;
Update salesTransaction
Set Unit_Price=45.41,Item_Number='Milk-1'
Where trx_id=1249
UPDATE 'table'
SET a = 0, b = 1, ... , b = n
WHERE x = y;