1. Create the employee database using CREATE DATABASE employee;
2. Create the employee table using CREATE TABLE employee(...);
3. Insert a new record into the employee table using INSERT INTO employee VALUES(...);
4. Update a record in the employee table using UPDATE employee SET ... WHERE ...;
5. Delete a record from the employee table using DELETE FROM employee WHERE ...;