大概的意思就是 这个样子:
表中 A列数据一样的时候 大多数 B列的数据是一样的 但是想找出 不一样的做一下验证 所以 要用怎样的sql 做过滤 请大佬们 指点
select a.* from temp a,temp b where a.a=b.a and a.b<>b.b
select distinct A,B from 表
SELECT v.A列,w.B列 FROM (select count(*) ,A列 FROM (SELECT DISTINCT A列,B列 from 表) group by A列 HAVING COUNT(*)>1) v left join 表 w on v.A列=w.A列
刚才少了一个步骤。。再看看