Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Help for SQL
Message
De
16/04/2008 12:30:40
Reza Meamar
Homa Programming Group
Shiraz, Iran
 
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Titre:
Help for SQL
Versions des environnements
Visual FoxPro:
VFP 7 SP1
OS:
Windows XP SP2
Divers
Thread ID:
01311183
Message ID:
01311183
Vues:
71
Dear all,
I have a table with below data:

Dcode – Pcode – Payment – Discount
1 - 1 - 10000 - 0
1 - 1 - 40000 - 0
1 - 1 - 20000 - 1000
1 - 2 - 30000 - 0

I want to write a SQL that make a cursor as below
Dcode – pcode – payment – DisNum – UnDisNum
1 - 1 - 70000 - 1 – 2
1 - 2 - 30000 - 0 - 1

Here is my SQL
Select Main.DCode, Main.PCode, SUM(Payment) ;
From Main ;
Group by Main.DCode,Main.PCode ;
Into cursor TempCrs Readwrite

But I don’t know how I can count num of records that their Discount is empty and num of records that their Discount is not empty.
Can I do this in one SQL statement ?
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform