我有一个表,其中有一个可以为空的 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),但会少一点。
有人可以解释为什么会这样吗?