画像を保存するために使用される null 許容 blob フィールド型 (SQL SERVER 2005) を持つテーブルがあります。だから私は次のような状況があります:
select count (*) from table where image_field is null
画像を含む 180000 行を返します。
select count (*) from table where image_field is not null
画像なしで 3600000 行を返します。
私が使用する場合、select count (*) from table
3780000行(3600000 + 180000)はありませんが、少し少なくなります。
誰かがなぜこれが起こるのか説明できますか?