1. Create a database named StudentDB.
2. Create a table Students with columns (StudentID, Name, Age, DepartmentID).
3. Create a table Departments with columns (DepartmentID, DepartmentName).
4. Create a table Courses with columns (CourseID, CourseName, DepartmentID).
5. Create a table Enrollments with columns (EnrollmentID, StudentID, CourseID, Grade).
6. Insert at least 5 records in each table.
7. Write a query to display all students with their department names.
8. Write a query to display all students along with the courses they are enrolled in and their grades.
9. Write a query to list all courses offered by a specific department.
10. Write a query to display students who have not enrolled in any course.
11. Create a view that shows StudentName, CourseName, and Grade.
12. Create a view that shows DepartmentName and total number of students in each department.
13. Write a query using a join to display students and courses from different departments.
14. Write a query to find the highest grade achieved in each course.
15. Write a query to display students enrolled in more than one course.