Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Help With Select
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00519030
Message ID:
00519078
Vues:
17
>I updated the select to include the file names. SCSAQTY is a table that contains sku# and pricing. SCSASLD contains sold history. A sku can be in the sold file many times.
>
>I am trying to write a select that will give me one record for each sku and a total qty sold. This is what I have so far. My question is where do I put the code to limit the qty sold to a specific date range? I’ve tried adding a where clause, but then I don’t sku’s that don’t have sales history. Any ideas?

Start simple. What does the following do?
select scsaqty.saq_sku, sum(scsasld.sal_soldqty) TotSold ;
   from scsaqty ;
     left outer join scsasld ;
          on scsaqty.saq_sku == scsasld.sal_sku ;
     where between(scsasld.sal_solddate, ?dBgnDate, ?dEndDate) ;
     group by scsaqty.saq_sku
Mark McCasland
Midlothian, TX USA
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform