1. Created Virtual Machine
2. Created a MySQL database server using Cloud SQL (fill in instanceID and Password)
3. Connected to VM
4. From VM, connected to Cloud SQL database server
5. Used SQL command to create a database called "db_students"
6. Inside the database, created a table called "newstudents" with their fields (names of each columns - code, name, cohort) using the CREATE command
7. Add values to the table using the INSERT command
8. Query the table using the SELECT command