This is a discussion on "summerizing multiple items at once." within the Databases section. This forum, and the thread "summerizing multiple items at once. are both part of the Program Your Website category.
|
|
|
|
|
![]() |
||
summerizing multiple items at once.
|
||
| Notices |
![]() |
|
|
LinkBack | Thread Tools |
|
|||
|
Hello,
I was hoping someone here can help me out. The Scenario is this: We have an application here that produces general reports for our product, displays items received, the amount of error on the item, how many pages it is, the type of errors the stage in the process it’s at and the flag it’s been set to. As well as the accuracy. (there is more but these are the relative items. Currently we display a nice grid of this information with no summary and we can get up to 5000 entries a day. My boss has asked me to summarize it. So he wants to know how many of each error type, how many of each stage the average of the accuracy, the total pages received, and so on. Broken down below: CharAccur: 99,78,88,54,100 Errortype: TE,TR,TL,RR,TL Stage: RE,ARC,AR,EX.EX Flag: Released, Cancel, release, release, release NumPages: 2, 3,5,2,2, Total: 5 rows in total So this is the data, the columns with there respective data Now what I need to do to each. CharAccur – Average all values Error Type: count each error type occurrence eg. TE=1, TR=1,TL=2, RR=1 Stage: count each stage type occurrence Flag: Count each Flag type occurrence NumPages: Add all pages up Total: count all returned rows. I would like the output to be one line that has the headers like this: CharAccur | TE | TR | TL | RR | RE and so on. And below them the values retrieved. I know I can do this on the webpage side if I must but would be much better to do it Server side. I tried building a whole slew of SQL Select statements for each type that got the counts and what not and then “UNION” but it does not work correctly and instead returns the first column name and a row under it for each select statement. Any help would be appreciated we are using: MS SQL 2000 Thanks for any help. |
|
|
|
||||
|
Re: summerizing multiple items at once.
One word: PHP
Last Blog Entry: 10 Reasons Why My Laptop Is Better Than Your Girlfriend (Dec 15th, 2007)
|
![]() |
| Thread Tools | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| passing items to paypal | dab42pat | PHP Forum | 5 | Jun 16th, 2007 10:13 |
| Animation for menu items | David Blake | Flash & Multimedia Forum | 12 | Jun 14th, 2007 00:54 |
| PHP includes menu - problems with sub-items | fallen_angel | PHP Forum | 3 | Jan 19th, 2007 17:15 |
| display mean and variance of purchased items | chikenyd | Other Programming Languages | 1 | Nov 4th, 2006 21:10 |
| how to submit all items from a multiple select control to an | andrew_perez5 | Classic ASP | 6 | Jan 5th, 2005 13:28 |