删除MySQL查询中的重复结果
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
使用 DISTINCT 怎么样?
看起来很容易...
但你真的尝试过谷歌搜索吗?你很快就会找到它。
What about using DISTINCT?
Seems pretty easy...
But you actually tried to google it? ou would have found it in no time.
很容易。使用以下查询:
Very easy. use following query:
请在查询中使用 DISTINCT 关键字以避免重复条目
Please use DISTINCT keyword in your query to avoid duplicate entries