Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Problem 2. (20 points) Consider the relational database defined in Express in relational algebra each of the following queries: create table professor ( professor_ID varchar

Problem 2. (20 points) Consider the relational database defined in Express in relational algebra each of the following queries: create table professor ( professor_ID varchar ( 1 0 ) , professor_name varchar ( 3 0 ) , ZIP_code char ( 5 ) , salary numeric (10 , 2 ) , primary key ( professor_ID ) ) ;

create table student ( student_ID varchar ( 1 0 ) , student_name varchar ( 3 0 ) , ZIP_code char ( 5 ) , primary key ( student_ID ) ) ;

create table advisement ( professor_ID varchar ( 1 0 ) , student_ID varchar ( 1 0 ) , start_date date , primary key ( professor_ID , student_ID ) , foreign key ( professor_ID ) references professor , foreign key ( student_ID ) references student ) ;

(a) (10 points) Find every ZIP code with more than 100 students (for each of these ZIP codes, there must be more than 100 students having that ZIP code).

(b) (10 points) Find the ID of each student advised by SOME of the professors who advise student S001 (i.e., student whose ID is S001).

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

Transactions On Large Scale Data And Knowledge Centered Systems Xxviii Special Issue On Database And Expert Systems Applications Lncs 9940

Authors: Abdelkader Hameurlain ,Josef Kung ,Roland Wagner ,Qimin Chen

1st Edition

3662534541, 978-3662534540

More Books

Students also viewed these Databases questions

Question

Explain exothermic and endothermic reactions with examples

Answered: 1 week ago

Question

Write a short note on rancidity and corrosiveness.

Answered: 1 week ago

Question

2. How do they influence my actions?

Answered: 1 week ago