Computer Science, asked by skj25, 1 month ago

give the query to display the old salary with 30 hired as new salary from employee table based​

Answers

Answered by ruksanachmd
1

Answer:

SELECT old_salary, old_salary + old_salary * 0.3 AS new_salary

FROM employee

Explanation:

Similar questions