doumu9799 2015-12-21 22:22
浏览 70
已采纳

从一个表中选择数据,按照另一个表中的数据总和进行排列

A client is looking for a points system to be implemented on her website, I'm struggling to display the users based upon the amount of points collected, I hope somebody may be able to help me out here and point me in the right direction to getting this code to work properly.

I am selecting all data from ap_users and in the code I am also trying to select all data from ap_points although I do not require all the data from either tables, to be specific I only require:

ap_users:
     user_id
     first_name
     last_name
     display_img
     hub_access

ap_points:
     user_id
     points_added

I thought that selecting ALL data may be the easiest route, will let you decide.

I am trying to select and display all users where hub_access = '1' and order by the total points_added by highest first. Points are added separately by rows and need to be added up (which is why I have the sum function).

$sql = "SELECT * FROM `ap_users`, `ap_points` WHERE `hub_access` = '1' ORDER BY sum(points_added) DESC";

I also tried configuring it to be specific tables like:

ap_users.hub_access and ORDER BY sum(ap_points.points_added) but these did not work either.

This current code is either showing no results or a single result with no errors displaying? I'm not sure whether I may need to use some kind of Group By function to connect the user_ids from both tables ?

  • 写回答

1条回答 默认 最新

  • douchushao7799 2015-12-21 23:00
    关注

    SUM is an aggregating function. You should be grouping by user_id if you want the sum for each user_id.

    Something like

    SELECT *, sum(points_added) as sum_points FROM app_users 
    JOIN app_points ON app_users.user_id = app_points.user_id
    WHERE `hub_access` = '1' 
    GROUP BY app_users.user_id
    ORDER BY sum_points;
    

    I have not tested that query, but that should give you an idea of the solution.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 请问有人会紧聚焦相关的matlab知识嘛?
  • ¥15 网络通信安全解决方案
  • ¥50 yalmip+Gurobi
  • ¥20 win10修改放大文本以及缩放与布局后蓝屏无法正常进入桌面
  • ¥15 itunes恢复数据最后一步发生错误
  • ¥15 关于#windows#的问题:2024年5月15日的win11更新后资源管理器没有地址栏了顶部的地址栏和文件搜索都消失了
  • ¥100 H5网页如何调用微信扫一扫功能?
  • ¥15 讲解电路图,付费求解
  • ¥15 有偿请教计算电磁学的问题涉及到空间中时域UTD和FDTD算法结合的
  • ¥15 three.js添加后处理以后模型锯齿化严重