Skip to content
Loading
Write a query to output the apartments whose prices are greater than t
+1
  • Sachin Singh
    1. SELECT * from apartments    
    2. WHERE price> (SELECT AVG(price) FROM apartments) and status='Not rented' order by price;  
     
    +1