Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
SQL sum syntax
Message
 
 
To
14/09/2011 16:06:36
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Title:
Environment versions
Visual FoxPro:
VFP 9 SP2
OS:
Windows 7
Network:
Windows 2003 Server
Database:
Visual FoxPro
Application:
Desktop
Miscellaneous
Thread ID:
01523537
Message ID:
01523539
Views:
62
This message has been marked as a message which has helped to the initial question of the thread.
It's basic select with SUM() and GROUP BY
SELECT Empno, empname,  SUM(gross) As Amount FROM mytable GROUP BY  Empno, empname
>I have a simple payroll table with multiple entries for each employee. Something like;
>
>Empno empname gross
>1 jack $500
>1 jack $500
>2 Jill $100
>2 Jill $100
>2 Jill $100
>
>etc...
>
>I'd like to create a table like this;
>Empno empname gross
>1 jack $1000
>2 jill $300
>
>where the gross has been summed for each employee.
>
>In the past I have done this with scan/endscan and calculate sum , old method.
>
>Can someone show me an example of a simpler method, I suspect SQL select.
>
>Thanks, I apologize for being so elementary but my vfp usage has been almost nihl for the past year.
>
>Steve
--sb--
Previous
Reply
Map
View

Click here to load this message in the networking platform