如何使mysql关联查询返回结果集中相同字段不同数据只返回一条

2024-11-23 23:29:26
推荐回答(3个)
回答1:

select *
from table ###where not exists (select * from table ###where # = #and ## < ##)
在使用mysql时,有时需要查询出某个字段不重复的记录,虽然mysql提供 有distinct这个关键字来过滤掉多余的重复记录只保留一条,但往往只用它来返回不重复记录的条数,而不是用它来返回不重记录的所有值。其原因是 distinct只能返回它的目标字段,而无法返回其它字段,这个问题让我困扰了很久,用distinct不能解决的话,只有用二重循环查询来解决。
给个例子把,比如:表table_a 4条数据id A B C D01 ab 1a2 1b2 12102 ab 2a3 3b3 4a103 ac 1a2 1b2 12104 ac 2a4 3b2 52g何让A字段重复取条 比01 ab 1a2 1b2 12103 ac 1a2 1b2 121
保留相同A值id行select *from table_a awhere not exists (select 1 from table_a bwhere b.A = a.Aand b.id < a.id)

回答2:

这个我也不知道呀,如果你的b表还有id=3.4···这些数据,查询的结果的列又要求要变吧,最好的办法就是写存储过程或者函数来处理。如果结果的列名是固定的就不用存储过程这些也能简单实现。

回答3:

select max(id) as id,fid,title,date from table group by fid,title,date