Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How can I read data from multiple dbf's
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Divers
Thread ID:
00497144
Message ID:
00497151
Vues:
12
>Hi friends,
>I have a question
>
>how can I read data from multiple dbf's
>eg. I have 500-1000 pieces dbf fields are orderdate,quantity
>I wantto read quantitys between 2 date from these dbfs and finish with
>into table temp.dbf systanx
>But I couldn't find any idea for this
>
>thanks for the help


Look at select SQL in the help

I think you need something like:
Select distinct article,sum(quantity);
  from myDBF;
  where orderdate between myfirstdate AND mylastdate;
  group by article;
  into table temp.dbf
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform