Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write the following queries in SQL. No duplicates should be printed for any answer. Consider the following relations: Student(snum: integer, sname: string, major: string, level:

Write the following queries in SQL. No duplicates should be printed for any answer.

Consider the following relations: Student(snum: integer, sname: string, major: string, level: string, age: integer) Class(name: string, time: TIME, room: string, fid: integer) Enrolled(snum: integer, cname: string) Faculty(fid: integer, fname: string, deptid: integer)

The meaning of these relations is straightforward; for example, Enrolled has one record per student-class pair such that the student is enrolled in the class.

Find the level of all students who are enrolled in a class that starts before 9:00AM.

Find the course with the most students enrolled that starts before 9:00AM.

Find the number of unique students that every professor teaches.

Find the names of all Sophomore Computer Science majors who are enrolled in a class taught by Mark Sheldon.

Find the name of the youngest student who is an American Studies major or in an Introduction to International Relationsclass.

Print the average level of students in each class, for every class.

Print the average age and average level of students in each major, for every major.

Find the major in which the most students have more than one class with a given professor.

Find all pairs of students taking the same courses.

Find all pairs of students taking courses from the same professors.

For each major, find the student with the largest gap in their schedule (time between two classes).

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions