Consider a database with the following relations: Hotel (Hotel ID, H_Name, H_Address, H_City, Maximum_Capacity) Guest (G
Posted: Tue Jul 12, 2022 8:16 am
2. Display the minimum, maximum, andaverage price per night for rooms of type 'Suite' in hotels locatedin the city of Chicago, and give a short name for each of therequested output values.
3. for each of the guests' cities, displaythe city name and count the number of guests. Sort the answer withrespect to the city name, in descending order.
4. For each room type in "Chicago" locatedhotels, display the type and the hotel's name in the descendingorder of the type.
We are interested only in the types with an average price pernight of 120$ or more.
Consider a database with the following relations: Hotel (Hotel ID, H_Name, H_Address, H_City, Maximum_Capacity) Guest (Guest_ID, G_Name, G_Address, G_City) Room (Hotel ID, Room_Number, Type, Price_Per_Night) Booking (Guest_ID, Hotel_ID, Room Number, From_Date, To_Date, Number_of_Nights) Build the following queries in SQL.