I need to have records on two tables having similar structure with an employee code like "0001" and store it on a temporary table with the same structure.How am I gonna do it? Can I use query to pruduce the results?
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
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.