drex88669 2013-06-28 23:50
浏览 234
已采纳

MySQL GROUP By和ORDER BY冲突

So i'm trying to select some contacts (TABLE2) based on their HISTORY (TABLE1). So I am testing with this SQL Query:

SELECT
    contacts_history.userId,
    contacts_history.contactId,
    contacts_history.dateAdded,
    contacts.firstName
FROM
    contacts_history
INNER JOIN contacts ON contacts_history.contactId = contacts.contactId
AND contacts_history.userId = contacts.userId
GROUP BY
    contacts.contactId
ORDER BY
    contacts_history.dateAdded DESC
LIMIT 0, 10

But i'm noticing that i'm not getting the most 'recent' values. If I remove the GROUP BY I get totally different DATE RANGES.

I have tried using DISTINCT, but no decent response either.

Take a look at the comparison table results.

enter image description hereenter image description here

I'm having a hard time getting the most recent items, without having duplicate contactId's in there.

Any help would be greatly appreciated... i'm sure this is super basic, just not sure why it's not working the best.

  • 写回答

1条回答 默认 最新

  • duafagm1066 2013-06-28 23:57
    关注

    GROUP BY is for use with aggregate methods. Without something like MAX(contacts_history.dateAdded) it doesn't make any sense to use GROUP BY

    I think what you want is along the lines:

    SELECT
        contacts_history.userId,
        contacts_history.contactId,
        MAX(contacts_history.dateAdded) AS last_date,
        contacts.firstName
    FROM
        contacts_history
    INNER JOIN contacts ON contacts_history.contactId = contacts.contactId
    AND contacts_history.userId = contacts.userId
    GROUP BY
        contacts_history.userId, 
        contacts.contactId
        contacts.firstName
    ORDER BY
        last_date DESC
    LIMIT 0, 10
    

    This should give you (I haven't tested it) one line for each user and contact, sorted by the date the contact was added.

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

报告相同问题?

悬赏问题

  • ¥30 关于#java#的问题,请各位专家解答!
  • ¥20 pcf8563时钟芯片不启振
  • ¥20 pip2.40更新pip2.43时报错
  • ¥15 换yum源但仍然用不了httpd
  • ¥50 C# 使用DEVMOD设置打印机首选项
  • ¥15 麒麟V10 arm安装gdal
  • ¥20 OPENVPN连接问题
  • ¥15 flask实现搜索框访问数据库
  • ¥15 mrk3399刷完安卓11后投屏调试只能显示一个设备
  • ¥100 如何用js写一个游戏云存档