A score for a post should be upvotes - downvotes however in the data dump there are approx 3.5K posts where these numbers do not align:
Try running:
select count(*) from Posts p
where (
select sum(case when VoteTypeId = 2 then 1 else -1 end)
from Votes
where p.Id = PostId and VoteTypeId in (2,3)
) <> Score
This is mucking up some of my queries.
Is there a reason for this?
Can this be fixed in future data dumps?