How do I increase percentage in SQL query / stored procedure?[closed] been answered!
To select, try this:
select
select name, salary * 1.1 from Employee where Eno='113';
to update
update
update employee set salary = salary * 1.1 where eno = '113'