一张表 如何用sql语句进行筛选

2024-12-29 14:16:28
推荐回答(3个)
回答1:

使用distinct 去掉重复数据 后面跟什么字段 就是去掉什么重复的 多个字段用,隔开
例如 Select distinct name from a ;
得到的结果就是 张三 ,李四

回答2:

select * from tb a 
where not exists
(select 1 from tb where name=a.name and id

回答3:

select distinct name from a

distinct是去除重复的