dpm91915 2013-08-12 16:56
浏览 22
已采纳

在sql查询中不起作用

i have two tables in my db .. one is Messages and the other is Contacts... both tables contain the mobile_number field.. in Contacts table there is no duplicate numbers ... but in Messages tables there are several duplicate numbers in mobileNo field...what i am doing is write now i am selecting the distinct mobile numbers from the Messages tables and then i am comparring the distinct numbers from the contacts table ... so if the messages_mobileNo is found on the contacts table then give me the contact name against the number otherwise messages_mobileNo ... so the problem is distinct not working .. i am not able to get the distinct numbers from the Messages table ... it is showing me the duplicate numbers

here is my query

 SELECT DISTINCT Message.mobileNo,
            Contact.mobileNo,
            Contact.workNo,
            Contact.homeNo,
            Contact.other,
            Contact.name,

            Message.body,
            Message.idTextMessage
FROM cakephp_db.textmessage AS Message
LEFT JOIN cakephp_db.contacts AS Contact ON (Message.user_id = Contact.user_id
                                         AND ((Message.mobileNo = Contact.mobileNo)
                                              OR (Message.mobileNo = Contact.workNo)
                                              OR (Message.mobileNo = Contact.homeNo)
                                              OR (Message.mobileNo = Contact.other)))
 WHERE Message.User_id = 23
 ORDER BY Message.idTextMessage DESC LIMIT 6
  • 写回答

3条回答 默认 最新

  • dongyi1939 2013-08-12 17:01
    关注

    So your trying to get the last 6 messages of a person if I'm right?

     SELECT Message.mobileNo,
                Contact.mobileNo,
                Contact.workNo,
                Contact.homeNo,
                Contact.other,
                Contact.name,
    
                Message.body,
                Message.idTextMessage
    FROM cakephp_db.textmessage AS Message
    LEFT JOIN cakephp_db.contacts AS Contact ON Message.user_id = Contact.user_id
                                             AND Message.mobileNo IN (Contact.mobileNo, Contact.workNo, Contact.homeNo, Contact.other)
     WHERE Message.User_id = 23
    GROUP BY Message.mobileNo
     ORDER BY Message.idTextMessage DESC LIMIT 6
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?