I have an Emp table with the columns Name and Salary respectively. I want to increase salary by 15% in MSSQL .
The following query is for one update only, and I still cannot execute it ...
UPDATE Emp SET Salary = '(@Salary / 100) * 15 + @salary' WHERE Name='Zangiv'
I need one query operator to update multiple rows at once.
Thank you in advance
user1430484
source share