Re: Selecting games which a given user can join

2001-02-01 Thread Canadian Lumberer
On Thu, Feb 01, 2001 at 04:25:38AM +0300, Rus wrote: > > select t2.id from gamers t1,games t2 where t1.user="jack" and t2.id<>t1.gid > group by t2.id > > Original Message - > From: zbynek <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Wednesday, January 31, 2001 4:31 PM > Subject

RE: Selecting games which a given user can join

2001-01-31 Thread Beasley, Julien
6 AM > To: [EMAIL PROTECTED] > Subject: Re: Selecting games which a given user can join > > > select t2.id from gamers t1,games t2 where t1.user="jack" and > t2.id<>t1.gid > group by t2.id > > Original Message - > From: zbynek <[EM

Re: Selecting games which a given user can join

2001-01-31 Thread Rus
select t2.id from gamers t1,games t2 where t1.user="jack" and t2.id<>t1.gid group by t2.id Original Message - From: zbynek <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, January 31, 2001 4:31 PM Subject: Selecting games which a given user can join > Hi there! > > I'm new