Project 1
Project 1
6. Write a query to get the Employees having salaries greater than 13000 and less than
17000.
Write your query here
SELECT Employees_name, Department, Salary FROM
Employees WHERE Salary > 13000 AND Salary < 17000;
7. Delete the data of employee 10 from the “Employees” table.
Write your query here
DELETE FROM Employees WHERE Employees_name = 'Employee10';
9. Alter the Employees Table and change the data type of salary column to varchar
Write your query here
ALTER TABLE Employees
MODIFY COLUMN Salary VARCHAR(255);