现有一条sql
select a.列名,table1.列名 from table1 a left join table1 table1 on table1.列名=a.列名
where a.列名>=1
左连接查询的是同一个表,查询出的结果例如:
1 2 3
1 2 3
2 2 2
有重复的数据,在表中记录其实是只有一条的,
select * from table1 where 列名>=1 查询出的结果为:
1 2 3
2 2 2
如何去除掉重复的上面连接查询出来的重复数据
不使用distinct
group by
where条件不对吧
where条件是没有问题的