Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Consider the following database schema (primary keys are underlined) and SQL queries: Hotel (hotelNo, hotelName, city) Room (roomNo, hotelNo, type, price) Booking (hotelNo, guestNo, dateFrom,
Consider the following database schema (primary keys are underlined) and SQL queries: Hotel (hotelNo, hotelName, city) Room (roomNo, hotelNo, type, price) Booking (hotelNo, guestNo, dateFrom, dateTo, roomNo) Guest (guestNo, guestName, guestAddress) 1. SELECT r.room No, r.type, r.price FROM Room r, Booking b, Hotel h WHERE r.roomNo = b.room No AND b.hotelNo = h.hotelNo AND h.hotelName = "Ritz" AND r.price > 100; Given the schema above, consider providing a comparative analysis of a relational DB and an object-oriented DB with respect to: a. Select queries (you can work on the two queries already provided above) b. Insert queries (create any one example query) c. Delete queries (create any one example query) Your comparative analysis should be supported by the arguments based on how these queries are handled internally by the database engines (RDBMS and OODBMS). For the object oriented DBs query handling you can provide a pseudocode to support your claim in a more effective way to gain the maximum score)
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