Forums before death by AOL, social media and spammers... "We can't have nice things"
|    comp.databases.ms-sqlserver    |    Notorious Rube Goldberg contraption    |    19,505 messages    |
[   << oldest   |   < older   |   list   |   newer >   |   newest >>   ]
|    Message 18,374 of 19,505    |
|    Erland Sommarskog to Gene Wirchenko    |
|    Re: SSE 2008: Referring to Other Rows Be    |
|    12 Jul 11 23:55:15    |
      XPost: microsoft.public.sqlserver.programming       From: esquel@sommarskog.se              Gene Wirchenko (genew@ocis.net) writes:       > How do I force a condition based on multiple rows?              Generally, you need to use a trigger.                     > I want the necessary rows to be entered in a batch. As a simple       > example, what would be the coding of the constraint in this case       > following?       >       > create table Symmetric       > (       > a int not null,       > b int not null       > )       >       > Constraint: If (x,y) is in Symmetric, then (y,x) is also in       > Symmetric.              Assuming that (a, b) is the primary key, this can be enforced with a       constraint:              CREATE TABLE Symmetric (        a int NOT NULL,        b int NOT NULL,        CONSTRAINT pk PRIMARY KEY (a, b),        CONSTRAINT fk FOREIGN KEY (b, a) REFERENCES Symmetric (a, b)       )                            --       Erland Sommarskog, SQL Server MVP, esquel@sommarskog.se              Links for SQL Server Books Online:       SQL 2008: http://msdn.microsoft.com/en-us/sqlserver/cc514207.aspx       SQL 2005: http://msdn.microsoft.com/en-us/sqlserver/bb895970.aspx              --- SoupGate-Win32 v1.05        * Origin: you cannot sedate... all the things you hate (1:229/2)    |
[   << oldest   |   < older   |   list   |   newer >   |   newest >>   ]
(c) 1994, bbs@darkrealms.ca