MySql in 和not in统计问题
select count(*) from xx; -- 100
select count(*) from xxwhere field in ('01','02','03','04') ; --95
select count(*) from xxwhere field not in ('01','02','03','04') ;一定是5?
当字段为null时,not in不会统计改行,只有field全部不为空时,in和not in数据查询才会一直
...
原创
2021-02-01 16:56:46 ·
370 阅读 ·
0 评论