Write a query to output the apartments whose prices are greater than the average and are also not rented, sorted by the 'Price' column.

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

R PROGRAMMING PROBLEM HELP

### Problem Statement: Apartments Information Query

In this exercise, you will be required to write an SQL query to output details about certain apartments based on specific criteria. The provided table consists of three columns: Apartment Name, Address, Price, and Rental Status. 

Below is the table representing the data:

|   | Apartment Name | Address                  | Price | Rental Status |
|---|----------------|--------------------------|-------|---------------|
| 3 | Moretown       | 3757 Wines Lane          | 700   | Not rented    |
| 4 | Owatonna       | 314 Pritchard Court      | 500   | Rented        |
| 5 | Grayslake      | 3234 Cunningham Court    | 600   | Rented        |
| 6 | Great Neck     | 1927 Romines Mill Road   | 900   | Not rented    |

### Task:

Write a query to output the apartments whose prices are **greater than the average** and are also **not rented**, sorted by the `Price` column.

#### Note:
- Recall the `AVG` keyword to compute the average price.
- Ensure the final results are sorted in ascending order of price.

#### Instructions:

1. Calculate the average price of all the apartments.
2. Select apartments that meet the following criteria:
   - Price is greater than the average.
   - The rental status is "Not rented".
3. Order the result by the `Price` column.

Once you have formulated the SQL query based on the above requirements, click on the "Start Solving" button to test your solution.

![Graph] The table above is part of the problem statement and provides necessary details required to solve the exercise.

**Example SQL Query:**
```sql
SELECT Apartment Name, Address, Price, Rental Status
FROM Apartments
WHERE Price > (SELECT AVG(Price) FROM Apartments)
AND Rental Status = 'Not rented'
ORDER BY Price;
```

**Happy Query Writing!**
Transcribed Image Text:### Problem Statement: Apartments Information Query In this exercise, you will be required to write an SQL query to output details about certain apartments based on specific criteria. The provided table consists of three columns: Apartment Name, Address, Price, and Rental Status. Below is the table representing the data: | | Apartment Name | Address | Price | Rental Status | |---|----------------|--------------------------|-------|---------------| | 3 | Moretown | 3757 Wines Lane | 700 | Not rented | | 4 | Owatonna | 314 Pritchard Court | 500 | Rented | | 5 | Grayslake | 3234 Cunningham Court | 600 | Rented | | 6 | Great Neck | 1927 Romines Mill Road | 900 | Not rented | ### Task: Write a query to output the apartments whose prices are **greater than the average** and are also **not rented**, sorted by the `Price` column. #### Note: - Recall the `AVG` keyword to compute the average price. - Ensure the final results are sorted in ascending order of price. #### Instructions: 1. Calculate the average price of all the apartments. 2. Select apartments that meet the following criteria: - Price is greater than the average. - The rental status is "Not rented". 3. Order the result by the `Price` column. Once you have formulated the SQL query based on the above requirements, click on the "Start Solving" button to test your solution. ![Graph] The table above is part of the problem statement and provides necessary details required to solve the exercise. **Example SQL Query:** ```sql SELECT Apartment Name, Address, Price, Rental Status FROM Apartments WHERE Price > (SELECT AVG(Price) FROM Apartments) AND Rental Status = 'Not rented' ORDER BY Price; ``` **Happy Query Writing!**
## Apartments

You want to rent an apartment and have the following table named **Apartments**:

| id | city      | address               | price | status     |
|----|-----------|-----------------------|-------|------------|
| 1  | Las Vegas | 732 Hall Street       | 1000  | Not rented |
| 2  | Marlboro  | 985 Huntz Lane        | 800   | Not rented |
| 3  | Moretown  | 3757 Wines Lane       | 700   | Not rented |
| 4  | Owatonna  | 314 Pritchard Court   | 500   | Rented     |

To start solving this problem, click on the button below:

**START SOLVING**

---

This table lists various apartments that are available for rent, along with their respective details. Each apartment is identified by an `id` and includes information about the `city`, `address`, `price`, and `status` (whether it is currently rented or not).
Transcribed Image Text:## Apartments You want to rent an apartment and have the following table named **Apartments**: | id | city | address | price | status | |----|-----------|-----------------------|-------|------------| | 1 | Las Vegas | 732 Hall Street | 1000 | Not rented | | 2 | Marlboro | 985 Huntz Lane | 800 | Not rented | | 3 | Moretown | 3757 Wines Lane | 700 | Not rented | | 4 | Owatonna | 314 Pritchard Court | 500 | Rented | To start solving this problem, click on the button below: **START SOLVING** --- This table lists various apartments that are available for rent, along with their respective details. Each apartment is identified by an `id` and includes information about the `city`, `address`, `price`, and `status` (whether it is currently rented or not).
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY