create a new database (named MyUniversity), the creation (using the CREATE command) should be done once. The database is now created and saved locally on your computer. When you close the workbench and reopen it again, no need to re-run this CREATE command again (the compiler will give you an error, as the database you would like to create was already created) Task Description: consider the following relations for a university: Student (sid: integer, sname: string(100 chars), GPA: real, dateOfBirth: date, Did: integer, FirstYear: integer) Department (did: integer, dname: string(30 chars), capacity: integer) Course (cid: integer, cname: string(50 chars), credit: integer) Enroll (studentID: integer, courseID: integer, departmentID: integer, enrollmentDate: date, finalGrade: real) studentID, courseID, and departmentID in Enroll are foreign keys referencing the primary keys of the student, course, and department relations, respectively. Did in Student is a foreign key referencing the primary key of the department relation. Using SQL, create these relations under the MyUniversity database you created. Place the constraints (e.g., default values, check, primary keys) you find appropriate.

Programming Logic & Design Comprehensive
9th Edition
ISBN:9781337669405
Author:FARRELL
Publisher:FARRELL
Chapter7: File Handling And Applications
Section: Chapter Questions
Problem 6PE
icon
Related questions
Question

create a new database (named MyUniversity), the creation (using the CREATE command) should
be done once. The database is now created and saved locally on your computer. When you close the workbench and reopen it again, no need to re-run this CREATE command again (the compiler will give you an error, as the database you would like to create was already created)

Task Description: consider the following relations for a university:

Student (sid: integer, sname: string(100 chars), GPA: real, dateOfBirth: date, Did: integer, FirstYear: integer)

Department (did: integer, dname: string(30 chars), capacity: integer)

Course (cid: integer, cname: string(50 chars), credit: integer)

Enroll (studentID: integer, courseID: integer, departmentID: integer, enrollmentDate: date, finalGrade: real)

studentID, courseID, and departmentID in Enroll are foreign keys referencing the primary keys of the student, course, and department relations, respectively. Did in Student is a foreign key referencing the primary key of the department relation.

Using SQL, create these relations under the MyUniversity database you created. Place the constraints
(e.g., default values, check, primary keys) you find appropriate.

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 2 images

Blurred answer
Follow-up Questions
Read through expert solutions to related follow-up questions below.
Follow-up Question

Using SQL, insert (random but meaningful) data records in the above tables.


• Create at least four different courses that include Operating Systems (3 credit hours), Data Bases (4 credit hours), and Marketing (5 credit hours) courses – consider one more course.


• Create three departments that include a Computer Science department and a Business department –consider one more department.


• Add at least 15 students (divided on the three departments – 5 students for each department). Randomly distribute the value of the “First year” between 2016 and 2022.


• Each student has at least three different enrollments(each student is registered for three different courses).
The enrollments should be between January 2020 and December 2020.

Solution
Bartleby Expert
SEE SOLUTION
Knowledge Booster
Intermediate SQL concepts
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage