查询不重复:
select * from 表名 where 列1 in (select min(列1) from 表名 group by 列3)
删除重复数据:
谨慎使用
delete 表名 where 列1 not in (select min(列1) from 表名 group by 列3)