6个回答
展开全部
select *, count(distinct name) as ccc from table group by name order by id desc;
查询结果中最终会多出来一个字段ccc,不用这个ccc字段就可以了
使用其他的办法,要么是效率不高,要么是返回不了你想要的结果集。
查询结果中最终会多出来一个字段ccc,不用这个ccc字段就可以了
使用其他的办法,要么是效率不高,要么是返回不了你想要的结果集。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
可以这样写
select id,name,msg from table1 where id = (select max(id) from table1 b where table1.name = b.name)
或
select id,name,msg from table1 where not exists(select * from table1 b where table1.name = b.name and table1.id < b.id)
如果要排序的话可以再在后面加order by id desc
select id,name,msg from table1 where id = (select max(id) from table1 b where table1.name = b.name)
或
select id,name,msg from table1 where not exists(select * from table1 b where table1.name = b.name and table1.id < b.id)
如果要排序的话可以再在后面加order by id desc
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
SELECT a.* FROM dd a RIGHT JOIN dd b ON a.name=b.name AND a.id != b.id GROUP BY a.`name`
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
SELECT * FROM 表 WHERE id IN (select MAX(id) from 表 GROUP BY name);
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
distinct(字段名)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询