Advertisement
Advertisement
| 03.30.2008 at 04:49PM PDT, ID: 23281300 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: |
//this first one is to delete any entry (i,j) from T3 that is already in
//T2 or T1
delete from T3
where I = whatever
and (J in (select J from T2 where I = whatever) or
(J in (select J from T1 where I = whatever));
//this is to delete any entry (i,j) from T2 that is already in T1
delete from T2
where I = whatever
and J in (select J from T1 where I = whatever)
|