SQL - Aggregate Functions
Consider this query:
It returns NULL even though there are products with price 0 and above. What is the likely problem?
SELECT AVG(price) FROM Products WHERE price > 0;It returns NULL even though there are products with price 0 and above. What is the likely problem?
