Created
March 3, 2017 10:10
-
-
Save h0tk3y/ade199613c8077b7d82b90ad571710a7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE VIEW avg_meter_cost_rent AS | |
| SELECT rooms_number, AVG(cost / area) AS avg_meter_cost | |
| FROM offer JOIN property USING (property_id) | |
| GROUP BY rooms_number | |
| WHERE kind = 'rent'; | |
| CREATE VIEW avg_meter_cost_sale AS | |
| SELECT rooms_number, AVG(cost / area) AS avg_meter_cost | |
| FROM offer JOIN property USING (property_id) | |
| GROUP BY rooms_number | |
| WHERE kind = 'sale'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment