8. Add New Student
You are given the following tables:
    - Student (name, age, hobby)
    - Teacher (name, age, department)

Insert a new student with the following data:
    - Name  : "Phil"
    - Age   : 20
    - Hobby : "Swimming"

After inserting, query all the data from the Student table
to verify that your insertion works.
Your Query
Your Output
Expected Output