Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

department(sept_name,building,budget); student(ID,name,dept_name,tot_cred); instructor(ID,name,dept_name,salary); course(course_id,sec_id,semester,year,grade); section(course_id,sec_id,semester,year,building,room_number,time_slot_is,capacity); takes(ID,course_id,semester,year,grade); teaches(ID,course_id,sec_id,semester,year); 2.List the total number of sections is being offered by each department in Spring 2008. 3.List the course

department(sept_name,building,budget);

student(ID,name,dept_name,tot_cred);

instructor(ID,name,dept_name,salary);

course(course_id,sec_id,semester,year,grade);

section(course_id,sec_id,semester,year,building,room_number,time_slot_is,capacity);

takes(ID,course_id,semester,year,grade);

teaches(ID,course_id,sec_id,semester,year);

2.List the total number of sections is being offered by each department in Spring 2008.

3.List the course and how many sections that it has been offered in history in descending order.

4. List the total credit hours for instructors who taught in Spring 2008 in descending. You need to include all instructors in the output, even the ones who didnt teach. The total credit hours is calculated by the sum of course credit * student number for all classes that an instructor teaches.

5. Generate the transcript for student whose id is 1000 chronologically. For example: Spring 2002 is before Fall 2002.

6. Generate the total number of students that each instructor taught. Sort by department, then by the student number in descending order. If an instructor taught the same students multiple times, count it as one.

7. List the top 20 students of highest GPAs in Math department. List student id, name, overall GPA, and order the output by GPA from highest to lowest.

8.List section information for classes offered in 2008 Spring,include course_id, course_title, section_id, capacity, actual, remaining, instructor name, building and room_number

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

Recommended Textbook for

Modern Database Management

Authors: Donald A. Carpenter Fred R. McFadden

1st Edition

ISBN: 8178088045, 978-8178088044

More Books

Students also viewed these Databases questions

Question

Understand what is meant by Big Data, and it implications for HRM.

Answered: 1 week ago