1
INSERT INTO Employees (name, position, salary, hire_date)
VALUES ('Alice', 'Engineer', 75000.00, '2024-06-01');
2.
SELECT product_name, price
FROM Products
WHERE price > 200.00;
3.
UPDATE Employees
SET salary = 90000.00
WHERE id = 3;
4.
DELETE FROM Orders
WHERE order_date < '2024-01-01';
note:from the given data there is no order table
5.
SELECT COUNT(*)
FROM Products
WHERE quantity > 50;
6.
ALTER TABLE Employees
ADD hire_date DATE;