I have a query that counts the price of all items between two dates. Here is the select statement:
SELECT SUM(Price) AS TotalPrice FROM Inventory WHERE (DateAdd
You could use
SELECT ISNULL(SUM(ISNULL(Price, 0)), 0).
SELECT ISNULL(SUM(ISNULL(Price, 0)), 0)
I'm 99% sure that will work.