Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Join 2 simulair databases in SQL select
Message
 
À
03/04/2000 17:28:08
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Divers
Thread ID:
00354627
Message ID:
00354653
Vues:
18
>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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform