
February 15th, 2000, 02:41 AM
|
|
Contributing User
|
|
Join Date: Dec 1999
Location: Netherlands
Posts: 77
Time spent in forums: < 1 sec
Reputation Power: 14
|
|
|
Hi Marc,
What you want is a "difference" query between both tables, in which you get the 15 unique rows?
I assume you set up both tables with an unique ID column. Now to get the 15 non-overlapping rows from both tables, do:
select * from Table1 t1, Table2 t2 where t1.ID <> t2.ID
Peter
|