database - Mysql query to get count result and group by -
i've got 3 tables different records users,
user username | realname | date evn-az-3ju john 11/2012 03:09:40 p.m. jwyvm_rdyt steve 12/2012 03:09:40 p.m. bsmiatwkhi mahesh 01/2013 03:09:40 p.m. zrobzh4um0 santa 01/2013 03:09:40 p.m. wyvm_rdyt grolsch 11/2012 03:09:40 p.m. offline username | messageid | message jwyvm_rdyt 54 <message to="jwyvm_rdyt" id="t4wa4-291" type="chat" from="evn-az-3ju"><body>test1</body><thread>1a327531-5a1c-4d6b-8b66-1209cdabb77d</thread></message> jwyvm_rdyt 78 <message to="jwyvm_rdyt" id="t4wa4-290" type="chat" from="evn-az-3ju"><body>happy birthday</body><thread>1a327531-5a1c-4d6b-8b66-1209cdabb77d</thread></message> evn-az-3ju 89 <message to="evn-az-3ju" id="t4wa4-290" type="chat" from="evn-az-3ju"><body>happy birthday</body><thread>1a327531-5a1c-4d6b-8b66-1209cdabb77d</thread></message> zrobzh4um0 98 <message to="zrobzh4um0" id="t4wa4-290" type="chat" from="evn-az-3ju"><body>happy birthday</body><thread>1a327531-5a1c-4d6b-8b66-1209cdabb77d</thread></message> wyvm_rdyt 45 <message to="wyvm_rdyt" id="t4wa4-290" type="chat" from="evn-az-3ju"><body>happy birthday</body><thread>1a327531-5a1c-4d6b-8b66-1209cdabb77d</thread></message> roster username | jid | date jwyvm_rdyt evn-az-3ju 11/2012 03:09:40 p.m. jwyvm_rdyt zrobzh4um0 12/2012 03:09:40 p.m. jwyvm_rdyt bsmiatwkhi 01/2013 03:09:40 p.m. zrobzh4um0 wyvm_rdyt 01/2013 03:09:40 p.m. wyvm_rdyt zrobzh4um0 11/2012 03:09:40 p.m.
these tables want result set this,
username | realname | count evn-az-3ju john 2 zrobzh4um0 santa 0 bsmiatwkhi mahesh 0
i want know roster jid username 'jwyvm_rdyt' has along realname , count of message if message contains roster jid in that. 'evn-az-3ju' in message 54 , 78, count 2 roster jid.
any appreciated.
select c.jid username,c.realname,count(nullif(trim(o.message), '')) count (select r.`jid`,u.realname roster r join user u on r.jid=u.username r.username='jwyvm_rdyt' ) c left join offline o on o.message concat('%', c.jid, '%') , o.username='jwyvm_rdyt' group jid
Comments
Post a Comment