Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Help with SQL
Message
De
13/11/2008 08:50:54
Lutz Scheffler
Lutz Scheffler Software Ingenieurbüro
Dresden, Allemagne
 
 
À
13/11/2008 06:52:55
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Titre:
Versions des environnements
Visual FoxPro:
VFP 9 SP2
OS:
Vista
Network:
Windows 2008 Server
Database:
MS SQL Server
Divers
Thread ID:
01361585
Message ID:
01361616
Vues:
19
Hm, I see two ways. The one is two separate SELECTs. Use the one to sum the one and use the result in the second.

The other one (what I not fully understand and never have used) is a subquery in the way
SELECT;
Cursor1.fieldXXX,;
(Select sum(blabla) from cursor2 where cursor2.field=cursor1.field) as nAggr;
from Cursor1
>I'm trying to achieve the report below:
>
>
>                      Derek                         Bob                      Angus          ...
>Inv. No.  Booked   Charged   Booked   Charged  Booked   Charged 
>_____   ______    _______   ______    _______   ______    _______
>1        0.75       0.75
>2                               6         5.5      12         11
>3        20.5       20.5                   
>...
>
>
>So I need to sum the hours worked on a job, under each invoice ID, for each employee (JobAct.Hours), versus the hours required for each (JobHeads.Quantity)
>
>First I'm getting "command contains unrecognised phrase/keyword" and I can't figure what's up.
>
>Here's my pathetic attempt at the SQL. I've come to realise that I could really do with a course on this. I can't tell how successful it is as it won't work but I'm sure it's no good.
>
>
>Select	JobAct.OurInvID,  JobHeads.JobID, JobHeads.LabourID, ;
> 		SUM( jobheads.Quantity) as Booked, SUM( jobact.hours) as Charged,  ;
> 		Labour.Text ;
>  from jobheads ;
>  Where jobheads.JobID = "RTvo" ;
>  and not EMPTY( JobAct.OurInvID) ;
>  INNER JOIN JobAct ;
>  	ON  jobheads.JobID = jobact.JobID ;
>  INNER JOIN Labour ;
>    ON  Jobheads.LabourID = Labour.ID ;
>   group by JobAct.OurInvID, jobheads.JobID, JobHeads.LabourID ,Labour.Text  ;
>   order by JobAct.OurInvID, jobheads.JobID, JobHeads.LabourID ; 
>   into cursor JobsS
>
>
>A help would be much appreciated.
>
>Terry
Words are given to man to enable him to conceal his true feelings.
Charles Maurice de Talleyrand-Périgord

Weeks of programming can save you hours of planning.

Off

There is no place like [::1]
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform