- ➕ Create tables and define the structure of a database.
- ✍️ Insert records into a table.
- 🔄 Modify data in a table through updates.
- 💻 Practice basic SQL operations that are fundamental to database management.
- 💻 A computer with internet access.
- ✍️ A code editor (e.g., Visual Studio Code).
- 🖥️ MySQL Workbench or another SQL database environment.
📂 Write all your SQL queries in the answers.sql file.
✍️ Answer each question concisely and ensure your queries are clear and correct.
🗣️ Structure your responses clearly, and use comments if necessary to explain your approach.
Write an SQL statement to create a table named student with the following columns:
- id (an integer and the primary key)
- fullName (a text field with a maximum of 100 characters)
- age (an integer)
Write an SQL statement to insert at least 3 records into the student table.
Write an SQL statement to update the age of the student with ID 2 to 20 in the student table.
Good luck 🚀
Completion Date: 17-Sep-2025
Note: This assignment was completed after the official deadline (Wednesday, 20-August-2025).
It is being submitted solely for learning and practice purposes. I understand it will not be reviewed, but wanted to demonstrate completion and personal commitment to the course.