Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
One to many relationship INNER JOIN condition
Message
 
To
14/02/2011 11:35:00
General information
Forum:
Microsoft SQL Server
Category:
SQL syntax
Environment versions
SQL Server:
SQL Server 2008
Application:
Web
Miscellaneous
Thread ID:
01500073
Message ID:
01500120
Views:
40
>>You want to get records if ALL child records are Enabled = 0, isn't it?
>
>Pretty much, except the condition is in reversed. But, that is not a factor here. It is just a question of the syntax.
SELECT * 
    FROM MasterTable
INNER JOIN ChildTable ON MasterTable.PK = ChildTable.FK
INNER JOIN (SELECT ChildTable.FK
                   SUM(CASE WHEN The Condition goes Here
                                 THEN 1
                            ELSE 0 END) AS CondRecs,
                   COUNT(*) AS AllRecs
            FROM ChildTable
            GROUP BY FK) Tbl1
   ON MasterTable.PK = ChildTable.FK AND
      ChildTable.CondRecs = ChildTable.AllRecs
?
Against Stupidity the Gods themselves Contend in Vain - Johann Christoph Friedrich von Schiller
The only thing normal about database guys is their tables.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform