Answered step by step
Verified Expert Solution
Question
1 Approved Answer
PART A (Writing some of the queries for HW 4 in SQL) Consider a database with the following schema. LIKES(drinker.beer); /* primary key(drinker.beer) */ EREQUENTS(drinker.pub);
PART A (Writing some of the queries for HW 4 in SQL) Consider a database with the following schema. LIKES(drinker.beer); /* primary key(drinker.beer) */ EREQUENTS(drinker.pub); /* primary key(drinker.pub)*/ SERVES(pub.beer.cost); /* primary key(pub.beer) */ Write the following queries in standard SQL, but without using aggregate operators 1. 2. 3. 4. 5. 6. 7. Find pubs that serve some beer that Joe likes. Find drinkers who frequent pubs where they can get a drink for less than S3 Find drinkers who like at least one expensive (over S8) beer that Joe likes. Find drinkers who like some beers but do not frequent any pubs Find drinkers who frequent pubs that serve either Stella Artois or Molsons. Find pubs that serve every beer that Joe likes Find all drinkers who frequent a pub that serves at least 2 beers they like, and one of them for at most S3
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started