Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Join 2 simulair databases in SQL select
Message
 
To
03/04/2000 17:28:08
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00354627
Message ID:
00354653
Views:
13
>Hello,
>
>I have the following question:
>
>Is it possible to link 2 or more free tables with Sql-select ?
>
>The tables i use are ordlines.dbf and ordlines_history.dbf the fieldnames are identical and the records are all unique. I want to have them into 1 new cursor called ordlines_total.
>
>Can this be done without using a r/w cursor with append from ....
>
>Thanks in advance
Piet,
SELECT * FROM OrdLines ;
 UNION ALL ;
  SELECT * FROM Ordlines_history ;
 INTO CURSOR OrdLines_total
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform