The following request updates the employee table to apply a 10 percent cost of living increase to the salary for all employees:
UPDATE employee SET salary = salary * 1.1 ALL ;
The following request updates the employee table to apply a 10 percent cost of living increase to the salary for all employees:
UPDATE employee SET salary = salary * 1.1 ALL ;