Hi everybody,
Iam developing a report for my client.Suppose For eg: I have 3 tables ie.table1,table2,table3 and I want to inner join table2 and table3 to table1.Can it be done?
Eg:
SELECT blah,blah
FROM table1 inner join table2 on table1.id=table2.id inner join table3 on table1.pid=table3.pid
WHERE blah,blah
Group By blah,blah
Thanx in advance.
Iam developing a report for my client.Suppose For eg: I have 3 tables ie.table1,table2,table3 and I want to inner join table2 and table3 to table1.Can it be done?
Eg:
SELECT blah,blah
FROM table1 inner join table2 on table1.id=table2.id inner join table3 on table1.pid=table3.pid
WHERE blah,blah
Group By blah,blah
Thanx in advance.