I have shorten the code to make it easier to read on the forums. Basically what it is doing now is finding all of my products and putting them into another table which I export. However if the price is NULL then it is just putting a default price of 0.00. Some advertiser's disreguard all $0 items however my new one does not and they are listing all my non completed items. What needs to be added to this code for it to exclude all NULL items in the tblProduct.salePrice so that my tblFeed does not show them? Thanks for the help guys.
Code:
DELETE tblFeed INSERT INTO tblFeed (Category, Mfr, Title, Price)
SELECT tblProduct.FeedCategory AS Category,
tblCompany.name AS Mfr,
tblCompany.name + ' ' + tblProduct.productName AS Title,
ISNULL(tblProduct.salePrice, '0.00') AS Price
FROM tblProduct INNER JOIN
tblCompany ON tblProduct.company = tblCompany.ID INNER JOIN