Question
Given this schema: Users(uID, username, joinedTime, city) Posts(pID, uID, postTime, postText) Likes(uID, pID, likeTime) Posts[uID] Users[uID] Likes[uID] Users[uID] Likes[pID] Posts[pID] Solve all queries below using
Given this schema: Users(uID, username, joinedTime, city) Posts(pID, uID, postTime, postText) Likes(uID, pID, likeTime) Posts[uID] Users[uID] Likes[uID] Users[uID] Likes[pID] Posts[pID] Solve all queries below using only select (), project (), Cartesian product (), natural join (), and the assignment operator (:=).
Write a query that finds all IDs of posts that have been posted by users in Seattle and liked by users in Portland. This question combines lots of opera- tions; try to break down what you need to do step by step, write the component pieces, and then combine them together.
Answer should be this format.
SNAME(SX(SH(PH=3sP)))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