Give the query to display the old_salary, with 30% hire as new_salary from employee table based
Answers
Answered by
6
Answer:
Write a query in SQL to display all the information of the employees. Go to the editor. Sample table: employees
Answered by
1
Answer:
SELECT old_salary, old_salary + old_salary * 0.3 AS new_salary
FROM employee
Explanation:
Similar questions