Hi Tracy Ok, I will take look at that in a moment.(US OPEN) value 3; as table1x is 2 it inherits all from value 2(4 and 5), but value 2 inherits from 1 because table1x being 1( 1,2,3) and 6 from table3. So the result for value 3 is (1,2,3,4,5,6).
Thanks, E. CREATE CURSOR table2 (table1 I, table1x I, table3 I) insert into table2(table1, table1x, table3) values(1,0,1) insert into table2(table1, table1x, table3) values(1,0,2) insert into table2(table1, table1x, table3) values(1,0,3) insert into table2(table1, table1x, table3) values(2,0,4) insert into table2(table1, table1x, table3) values(2,1,0) insert into table2(table1, table1x, table3) values(2,0,5) insert into table2(table1, table1x, table3) values(3,2,0) insert into table2(table1, table1x, table3) values(3,0,6) _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech Searchable Archive: http://leafe.com/archives/search/profox This message: http://leafe.com/archives/byMID/profox/bba57c27ae5a4c04990761b0f17e7...@notebookhp ** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.

