My apologies, I didn't see that forum in the listings. However, I did manage to find a solution:
Query 1 - Returns all rows that have the error I am looking for:
SELECT costcentre, productcode, freestock
FROM product
WHERE CAST(freestock * 1000 AS INTEGER) <> freestock * 1000
AND...