Hello
I didn't understood exactly the question, but if you have two tables with the same structure and you want to obtain a temporary table containing those two tables, you can use the JOIN clause:
SELECT * FROM <table1> UNION SELECT * FROM <table2> WHERE <condition> INTO CURSOR crCursor
Hope this helps Grigore Dolghin
Class Software
Bucharest, Romania