Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2005 Forums
 SQL Server Administration (2005)
 Join Restriction -

Author  Topic 

niranjankumark
Posting Yak Master

164 Posts

Posted - 2008-12-14 : 07:55:10
Apart from business functionality .. is there any rule .. N table shud have N-1 joIN ???

3 TABLE - it can have 3 join based on funtionality also ???

table example :
Mtr ( key - mtrid ) ,
Mtr_asgn (primary key - mtrid , prtcp_id)
prtcp ( primary key - prtcp_id , foreign - mtrid)

select
from mtr,mtr_asgn,prtcp
where
mtr.mtrid = mtr_asgn.mtrid
and mtr.mtrid = prtcp.mtrid
and Mtr_asgn.prtcp_id = prtcp.prtcp_id








visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2008-12-14 : 12:32:50
didnt understand what you mean by join on functionality? can you elaborate?
Go to Top of Page
   

- Advertisement -