删除MySQL查询中的重复结果

发布于 2024-11-03 18:37:33 字数 490 浏览 0 评论 0原文

MySQL 查询检索:

totalpoints --  name 
55 -- John Doe
55 -- John Doe
55 -- John Doe
55 -- John Doe
55 -- John Doe
21 -- Jean London
21 -- Jean London
13 -- Mark Derry
13 -- Mark Derry
13 -- Mark Derry
13 -- Mark Derry
4 -- Lara Croft
1 -- Ryan Mirtle
1 -- Ryan Mirtle
1 -- Ryan Mirtle

我需要在 php 页面中显示:

totalpoints --  name 
55 -- John Doe
21 -- Jean London
13 -- Mark Derry
4 -- Lara Croft
1 -- Ryan Mirtle

如何摆脱重复的结果? 多谢

A MySQL query retrieves:

totalpoints --  name 
55 -- John Doe
55 -- John Doe
55 -- John Doe
55 -- John Doe
55 -- John Doe
21 -- Jean London
21 -- Jean London
13 -- Mark Derry
13 -- Mark Derry
13 -- Mark Derry
13 -- Mark Derry
4 -- Lara Croft
1 -- Ryan Mirtle
1 -- Ryan Mirtle
1 -- Ryan Mirtle

I need to show in a php page just:

totalpoints --  name 
55 -- John Doe
21 -- Jean London
13 -- Mark Derry
4 -- Lara Croft
1 -- Ryan Mirtle

How can I get rid off the repeated results?
Thanks a lot

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

违心° 2024-11-10 18:37:33

使用 DISTINCT 怎么样?
看起来很容易...
但你真的尝试过谷歌搜索吗?你很快就会找到它。

What about using DISTINCT?
Seems pretty easy...
But you actually tried to google it? ou would have found it in no time.

别把无礼当个性 2024-11-10 18:37:33
select name,totalpoints
from table
group by name
order by totalpoints desc
select name,totalpoints
from table
group by name
order by totalpoints desc
黑白记忆 2024-11-10 18:37:33
select distinct name,totalpoints from table
select distinct name,totalpoints from table
皇甫轩 2024-11-10 18:37:33

很容易。使用以下查询:

SELECT totalpoints, name
FROM table_name
GROUP BY name
ORDER BY totalpoints DESC

Very easy. use following query:

SELECT totalpoints, name
FROM table_name
GROUP BY name
ORDER BY totalpoints DESC
極樂鬼 2024-11-10 18:37:33

请在查询中使用 DISTINCT 关键字以避免重复条目

Please use DISTINCT keyword in your query to avoid duplicate entries

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文