Jump to content

MySql query problem


thefollower

Recommended Posts

I have a query which is meant to group the users that the person has contacted.. for example:

 

Say i contacted user id 2 twice... in the list it will only show it as once.

 

At the moment how ever it is displaying like this:

Contacted Users:

2

2

 

Which is wrong. It should group 2 to become 1. Like so:

Contacted Users:

2

 

This is what i got:

 

<?php
$GetConversation = mysql_query("SELECT *, IF(Sender='$ID', Receiver, Sender) as otherPartyID 
FROM messages
UNION
SELECT *, IF(Sender='$ID', Receiver, Sender) as otherPartyID
FROM textmessages
UNION
SELECT *, IF(Sender='$ID', Receiver, Sender) as otherPartyID
FROM phonecalls WHERE Sender='$ReportedPlayer' OR Receiver='$ReportedPlayer'
GROUP BY otherPartyID
")
or die(mysql_error());
?>

Link to comment
https://forums.phpfreaks.com/topic/83160-mysql-query-problem/
Share on other sites

<?php
$GetConversation = mysql_query("SELECT distinct rows *, IF(Sender='$ID', Receiver, Sender) as otherPartyID 
FROM messages
UNION
SELECT distinct rows *, IF(Sender='$ID', Receiver, Sender) as otherPartyID
FROM textmessages
UNION
SELECT distinct rows *, IF(Sender='$ID', Receiver, Sender) as otherPartyID
FROM phonecalls WHERE Sender='$ReportedPlayer' OR Receiver='$ReportedPlayer'
GROUP BY otherPartyID
")
or die(mysql_error());
?>

 

Like that?

Link to comment
https://forums.phpfreaks.com/topic/83160-mysql-query-problem/#findComment-423078
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.