Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Counting in an SQL statement
Message
From
21/09/2005 13:38:13
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Title:
Counting in an SQL statement
Environment versions
Visual FoxPro:
VFP 8 SP1
OS:
Windows XP SP2
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01051721
Message ID:
01051721
Views:
44
Hi,

I have an SQL select statement where I am joining two tables. I want to be able to count for a field equaling a certain value. I've tried many variations of the COUNT and SUM functions in my SQL statement but I haven't got it to work. here is my SQL select statement:


SELECT customerorder.jobnumbercode , Sum(Customerlineitem.packageindicatorquantity) AS PkgCount,;
Sum(Customerlineitem.packageindicatorretouchflag) AS Retouch,;
Sum(Customerlineitem.packageindicatorsoftfocusflag) AS SoftFocus,;
Sum(Customerlineitem.packageindicatoreffectflag) AS Effects,;
**Sum(Customerlineitem.packageindicatorcolortypecode="COLOR") As ColorType;
FROM customerorder ;
INNER JOIN customerlineitem ;
ON Customerorder.orderkey = Customerlineitem.orderkey;
WHERE Customerorder.ordercanceledflag = 0;
GROUP BY customerorder.jobnumbercode


I've indicated what line doesn't work (**). IF anyone has any ideas on how to fix this, I would very much appreciate it.

Thanks!

Tim
Next
Reply
Map
View

Click here to load this message in the networking platform