Between includes the end points. I suspect you want:
WHERE organization.total_funding_usd >= 0 AND
organization.total_funding_usd < 1000000
WHERE organization.total_funding_usd >= 1000000 AND
organization.total_funding_usd < 5000000
WHERE organization.total_funding_usd >= 0 AND
organization.total_funding_usd < 5000000
In other words, organizations with total funding of 1000000 are counted twice.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…