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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.