Computer Science, asked by nikhitha1843, 3 months ago

Give the query to display the old_salary, with 30% hire as new_salary from employee table based​

Answers

Answered by my3826653
6

Answer:

Write a query in SQL to display all the information of the employees. Go to the editor. Sample table: employees

Answered by ruksanachmd
1

Answer:

SELECT old_salary, old_salary + old_salary * 0.3 AS new_salary

FROM employee

Explanation:

Similar questions