sql 查询不重复的记录 可以使用 having count group by 组合先把不重复数据的id查询出来 通过count()计算 只有数目为1的才是不重复的数据select b.* from table b where b.id in(select a.id from table a group by a.name having count(a.id) <2)//其中 name重复的数据的列名
要先连接,你这样产生了笛卡尔积了