![]() |
Alexey admin 6/19/2007 |
Use EXISTS SQL function. select from B where not exists(select from A where A.Field1 = B.Field2)
|
F
|
funkfish author 6/28/2007 |
Use EXISTS SQL function. Here is the sample query: where Field1and Field2are fields used to link A and B.
|