Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Consider a database with the following schema. LIKES(drinker,beer); /* primary key(drinker,beer) */ FREQUENTS(drinker,pub); /* primary key(drinker,pub) */ SERVES(pub,beer,cost); /* primary key(pub,beer) */ Write the following
Consider a database with the following schema. LIKES(drinker,beer); /* primary key(drinker,beer) */ FREQUENTS(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.) Find pubs that serve every beer that Joe likes.
Thus this means that we need to be sure that the bar serves every singlw beer that Joe likes and not just some!
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