Re: Inner join question!

2003-02-28 Thread Ramesh Pillai
; Tore. > > - Original Message - > From: "Ramesh Pillai" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Thursday, February 27, 2003 10:36 PM > Subject: Inner join question! > > > > All, > > > > I have two tables like the fol

Re: Inner join question!

2003-02-27 Thread Tore Bostrup
ursday, February 27, 2003 10:36 PM Subject: Inner join question! > All, > > I have two tables like the following > > table A > date num1 num2 time > > table B > date num1 num2 time > > When I run a query like the following > > select * from A as a inner j

Inner join question!

2003-02-27 Thread Ramesh Pillai
All, I have two tables like the following table A date num1 num2 time table B date num1 num2 time When I run a query like the following select * from A as a inner join B as b on a.num1 = b.num1 and a.date=b.date and a.num2=b.num2 and a.time=b.time I am getting the results repeated 4 times, co