Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

SQL को कुछ उपयोगकर्ता से/के लिए अंतिम संदेश मिलते हैं

मैं SQL Server 2008 का उपयोग कर रहा हूं, आप यह नहीं कहते कि आप किस डेटाबेस का उपयोग कर रहे हैं।

आपके द्वारा प्रदान की गई जानकारी से आपकी क्वेरी आपको आवश्यक आउटपुट के लिए अत्यधिक जटिल लगती है। उपयोगकर्ता 36 से जुड़े सभी संदेशों को प्राप्त करने के लिए यहां एक सरल प्रश्न है:

SELECT  
       sender.msg_user_name AS sender_user_name
       ,recipient.msg_user_name AS recipient_user_name
       ,msg_date
       ,msg_text

FROM    
       dbo.Fed_Messages 

       INNER JOIN dbo.Fed_User AS sender 
       ON sender.msg_user_id = sender_user_id

       INNER JOIN dbo.Fed_User AS recipient 
       ON recipient.msg_user_id = recipient_user_id

WHERE   
       sender_user_id = 36
       OR recipient_user_id = 36

ORDER BY
       msg_date DESC

मुझे कुछ फ़ील्ड नाम बदलने पड़े हैं क्योंकि SQL सर्वर में आपके द्वारा चुने गए कुछ नाम आरक्षित शब्द हैं।

SQL Fiddle:http://sqlfiddle.com/#!3/b8e88/1

संपादित करें: अब आपने कुछ और जानकारी जोड़ी है, और दिखाया है कि एक id है संदेश तालिका पर फ़ील्ड, आप कुछ इस तरह का उपयोग कर सकते हैं (नोट:मेरे पास SQL ​​सर्वर है इसलिए आपको शायद MySQL के लिए क्वेरी को बदलना होगा):

SELECT  sender.msg_user_name AS sender_user_name
       ,recipient.msg_user_name AS recipient_user_name
       ,msg_date
       ,msg_text
FROM    dbo.Fed_Messages
        INNER JOIN dbo.Fed_User AS sender ON sender.msg_user_id = sender_user_id
        INNER JOIN dbo.Fed_User AS recipient ON recipient.msg_user_id = recipient_user_id
        INNER JOIN ( SELECT MAX(id) AS most_recent_message_id
                     FROM   dbo.Fed_Messages
                     GROUP BY CASE WHEN sender_user_id > recipient_user_id
                                   THEN recipient_user_id
                                   ELSE sender_user_id
                              END -- low_id
                           ,CASE WHEN sender_user_id < recipient_user_id
                                 THEN recipient_user_id
                                 ELSE sender_user_id
                            END -- high_id
                   ) T ON T.most_recent_message_id = dbo.Fed_Messages.id
WHERE   sender_user_id = 36
        OR recipient_user_id = 36
ORDER BY msg_date DESC

SELECT FROM . में क्वेरी का हिस्सा सबसे हाल का संदेश ढूंढता है (id . के आधार पर) , मुझे लगता है कि यह एक ऑटो इंक्रीमेंटिंग नंबर है) प्रेषक/प्राप्तकर्ता उपयोगकर्ता आईडी की प्रत्येक आदेशित जोड़ी के लिए। इसका परिणाम Fed_Messages . में फिर से जुड़ गया है तालिका यह सुनिश्चित करने के लिए कि हमें प्रेषक/रिसीवर के नाम सही मिले।

अपडेट किया गया SQL Fiddle:http://sqlfiddle.com/#!3/1f07a/2




  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. जावा से MySQL से कनेक्ट नहीं हो सकता:MySQL ड्राइवर कनेक्शन तर्क के अंदर NullPointerException

  2. एकाधिक डेटाबेस और लेनदेन

  3. फ्रंट एंड mysql, एक पंक्ति को हटा रहा है

  4. मैं दूरस्थ डेटाबेस तक पासवर्ड-रहित पहुँच के लिए रेल को कैसे कॉन्फ़िगर करूँ?

  5. मेरे Google चार्ट (तालिका) डेटा को एक्सेल या सीएसवी में निर्यात करें