Topic awaiting preservation: sql-ing an antilist from 2 tables (Page 1 of 1) |
|
---|---|
Nervous Wreck (II) Inmate From: Pa, US |
posted 06-19-2002 23:06
my.. brain... hurts.. |
Bipolar (III) Inmate From: |
posted 06-20-2002 08:29
if I understand you correctly, you should be able to get a list of ID's in T1 that where ID <> XID simply with code: SELECT * FROM T2 WHERE (SID <> XID)
code: SELECT T1.* FROM T2 INNER JOIN T1 ON T2.SID = T1.ID WHERE (T2.SID <> T2.XID)
|
Nervous Wreck (II) Inmate From: Pa, US |
posted 06-20-2002 18:29
hmm.. |