Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How to get the percentage
Message
 
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Versions des environnements
Visual FoxPro:
VFP 9 SP1
OS:
Windows XP SP2
Network:
Windows XP
Database:
Visual FoxPro
Divers
Thread ID:
01259001
Message ID:
01259021
Vues:
16
>it is already present in a table.
SELECT subcode, scode, lcode, sec, SUM(fail) AS sumfail, SUM(total) as sumtotal, ;
		SUM(fail) * 100 / SUM(total) as per ;
	FROM Stafft;
	group BY subcode, scode, lcode, sec;
	order BY lcode;
	into CURSOR olevelt
--sb--
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform