-Given the following relational DB schema and the following SQL query:
Student (sid, name, age, address)
Book(bid, title, author)
Checkout(sid, bid, date)
SELECT S.name
FROM Student S, Book B, Checkout C
WHERE S.sid = C.sid AND B.bid = C.bid AND B.author = ’Olden Fames’ AND S.age > 12
And assuming:
Using heuristic rules, show a physical query plan for this query, assuming there are no indexes and data is not sorted on any attribute.
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here