Computer Science, asked by Achar4899, 11 months ago

Write An Algorithm To Give A Bonus Of Rs 1000To Employees With A Salary Of Less Than Rs 50000

Answers

Answered by mohammads
0

Answer:

update table employee set curr_salary=salary+1000(select salary from employee where salary<50000);

Explanation:

Similar questions