Solved-Lab 4 Assignment: The Relational Algebra & SQL- Solution

$35.00 $24.00

The purpose of the following assignment is to practice writing queries using relational algebra and SQL. First, read Lab 4 notes before proceeding. Please use the relational algebra operators to write the queries, and then write the equivalent query in SQL. You will need to turn-in the lab, so either write your answers in text/word…

You’ll get a: . zip file solution

 

 
Categorys:

Description

5/5 – (2 votes)

The purpose of the following assignment is to practice writing queries using relational algebra and SQL. First, read Lab 4 notes before proceeding. Please use the relational algebra operators to write the queries, and then write the equivalent query in SQL. You will need to turn-in the lab, so either write your answers in text/word document, or write the solutions on paper and take a photo to upload to iLearn.

 

Assume that the following relations exist:

 

BOOKS(DocId, Title, Publisher, Year) STUDENTS(StId, StName, Major, Age) AUTHORS(AName, Address)

 

borrows(DocId, StId, Date) has-written(DocId, AName) describes(DocId, Keyword)

 

The following shows the entity relationship diagram. The key elds of the relations are underlined in the ER diagram.

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

1

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Write the following queries in relational algebra and then the equivalent

 

SQL query:

 

  1. List the year and title of each book

 

  1. List all information about students whose major is CS

 

  1. List all students with books they can borrow

 

  1. List all books published by McGraw-Hill before 1990

 

  1. List the name of those authors who are living in Davis

 

  1. List the name of students who are older than 30 and who are not studying CS

 

  1. Rename AName in the relation AUTHORS to Name

 

  1. List the names of all students who have borrowed a book and who are CS majors

 

  1. List the title of books written by the author \Jones”

 

  1. As previous, but not books that have the keyword \database”

 

  1. Find the name of the youngest student

 

  1. Find the title of the oldest book

 

 

 

 

 

 

2