Here are six tasks related to MySQL table management, covering CREATE TABLE, ALTER TABLE, and DROP TABLE commands.Have fun
Create a table called employees with the following columns:
Create a table called products to store inventory information. The table should have:
Add a new column email (VARCHAR 100) to the employees table.
Change the salary column's data type to FLOAT in the employees table.
Remove the stock_quantity column from the products table.
Completely remove the PRODUCTS table from the database.