使用distinct 去掉重复数据 后面跟什么字段 就是去掉什么重复的 多个字段用,隔开例如 Select distinct name from a ;得到的结果就是 张三 ,李四
select * from tb a where not exists(select 1 from tb where name=a.name and id
select distinct name from adistinct是去除重复的