View Single Post

   
  #7 (permalink)  
Old 04-29-2008, 08:27 PM
=?ISO-8859-1?Q?Olav_M=F8rkrid?=
 
Posts: n/a
Default Re: get all my newest messages

On 28/04/2008, Martijn Tonies <m.tonies@upscene.com> wrote:

> select *
> from ( select * from msgs order by msgs.created desc ) t
> where sender = 1 or recipient = 1
> group by sender, recipient


not quite right. first comes all of MY newest messages, then comes all
of THEIR newest messages. for example:

S R
1 2
1 3
1 5
1 7
2 1
5 1

the final result should include EITHER "1 2" OR "2 1", depending on
which of the two is newest. same for "1 5" and "5 1".
Reply With Quote