当表中数据的id一致,但是对应后面的数据不一致
执行下面语句并不会达到去重的效果
create table if not exists `test2` as
select distinct id,name,sex from test1;
下面test3表里的数据就可以
create table if not exists `test4` as
select distinct id,name,sex from test3;
希望大家注意,我是在count的时候数据和两表join之后数据不对发现的