Database-SQL
In this exercise, you have to do the following:
Create a database table for Student with an integer id, a variable-length string for the name, a fixed-length string with 3 letters for the country code (as nationality), study type with enum type (Degree, Master, and Ph.D. types), and start date with Date type. Later on, we come to the conclusion that the id must be a primary key with an auto-increment feature, and we have to add an additional column for gender with two possible values: male and female. Let's insert 5 arbitrary students into the database table.