0
I donât understand what is wrong?
SELECT * FROM Apartments WHERE price >3750 AND status = '%Not Rented%' ORDER BY price;
2 Answers
+ 1
1. Why you didn't pay attention to the hint:
"â ïžRemember the AVG keyword".
2. And what is it in SQL: "="?đ€
3. Look carefully what status should be. đ
+ 1
Well, if you use the "%" operator, then use it correctly: " status LIKE 'Not%' " đ