объясните пожалуйста, почему
select count(id) from table where fl1 = 1; // 3781
select count(id) from table where fl2 = 1; // 32938
в сумме дают 36719, но
select count(id) from table where fl1 = 1 or fl2 = 1 or (fl1 = 1 and fl2 = 1);
дает 36318 ?