Introduction
In this project, you will learn how to perform comprehensive DML (Data Manipulation Language) operations on the Employees table (emp) in the Employees database. You will learn how to insert new records, update existing records, and delete records from the table.
👀 Preview

🎯 Tasks
In this project, you will learn:
- How to access MySQL using the
sudocommand without a password - How to import data from a SQL file into the MySQL database
- How to insert new records into the
emptable using a single SQL statement - How to update the supervisor of an employee in the
emptable - How to update all records in the
emptable with a NULLcommvalue to set thecommto 0 - How to delete the record with the highest employee number from the
emptable - How to delete all employees who directly report to a specific manager in the
emptable
🏆 Achievements
After completing this project, you will be able to:
- Perform comprehensive DML operations on a MySQL database table
- Understand how to use SQL statements to insert, update, and delete data
- Gain experience in managing and manipulating data in a relational database
- Develop problem-solving skills by completing the various tasks in the project




