To update the 'Salary' column in the 'Employees' table by increasing all salaries by 10%, which SQL statement is correct? - Study24x7
Social learning Network
4 followers study24x7 25 Sep 2024 10:29 AM study24x7 study24x7

To update the "Salary" column in the "Employees" table by increasing all salaries by 10%, which SQL statement is correct?

A

UPDATE Employees SET Salary = Salary * 1.1

B

UPDATE Employees INCREASE Salary BY 10%

C

ALTER TABLE Employees MODIFY Salary = Salary * 1.1

D

CHANGE Employees SET Salary = Salary + (Salary * 0.1)

study24x7
Write a comment
Related Questions
500+   more Questions to answer
Most Related Articles