I have a column of books, and I want to just show the books that the price is higher than the average of these prices, how to do that? The name of my column is price
, and I can not put a where price > avg(price)
, nor a having price > avg(price)
.