I have a SQL table named private_messages with fields (id,from,to,message,stamp). the stamp field corresponds to the date of the message
So what query do i need for:
1) get a conversation between two users (ordered by date)?
I have tried the query
(SELECT * FROM private_messages WHERE from=$my_id AND to=$other_id)
UNION
(SELECT * FROM private_messages WHERE from=$other_id AND to=$my_id)
ORDER BY stamp
;
but doesn't work...
2) get the last messages beetween me and other users, each one with a different user, ordered by date (to construct a inbox like in faceebook for example)?
1.)
SELECT *
FROM private_messages a
WHERE (a.from = $my_id AND a.to = $other_id) OR
(a.from = $other_id AND a.to = $my_id)
ORDER BY stamp DESC
2.)
SELECT f.*
FROM
(
SELECT *
FROM private_messages a
WHERE (LEAST(a.from, a.to), GREATEST(a.from, a.to), a.stamp)
IN (
SELECT LEAST(b.from, b.to) AS x,
GREATEST(b.from, b.to) AS y,
MAX(b.stamp) AS msg_time
FROM private_messages b
GROUP BY x, y
)
) f
WHERE $my_id IN (f.from, f.to)
ORDER BY f.stamp DESC
Can you try this?
SELECT x.*
FROM (SELECT * FROM private_messages
WHERE `to`='$my_id' OR `from`='$my_id' GROUP BY `to`, `from`) AS x
ORDER BY x.stamp DESC ;
To, From could be reserved words. Noticed that x is a table alias.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With