Jump to content

[SOLVED] Count # of rows from MYSQL Query Result


bsamson

Recommended Posts

I wasn't sure how to word the subject ... but here's what I am trying to do.

 

I have a mysql table that looks something like this:

 

StoreNumber | Date | Score1 | Score2 | Score3

 

Now, as an example I have this in this table ...

 

01 | 05/09/2008 | 50 | 20 | 30

04 | 05/06/2008 | 28 | 12 | 45

07 | 05/01/2008 | 85 | 43 | 76

04 | 05/04/2008 | 21 | 11 | 18

07 | 05/09/2008 | 54 | 78 | 10

02 | 05/02/2008 | 12 | 43 | 30

 

Now, let's say I run this query:

SELECT SUM(score1)+SUM(score2)+SUM(score3) as totalscore FROM v2breakdown WHERE DATE_FORMAT(FROM_UNIXTIME(`entrydate`), '%Y/%m/%d') >= '2008/05/01' ORDER BY totalscore ASC

 

 

Obviously one of the things I know is the results will be listed low to high which in turn will reveal where that location ranks. I am just trying to determine where a location ranks company wide. The above query will list them in order but outside of an if..then statement is there something I can add to the query that will tell me the store's rank?

 

Thanks in adance!

 

 

Link to comment
Share on other sites

You could use a subquery:

 

SELECT score1+score2+score3 as totalscore,(SELECT COUNT(*)+1 FROM v2breakdown WHERE totalscore < score1+score2+score3) as position FROM v2breakdown WHERE DATE_FORMAT(FROM_UNIXTIME(`entrydate`), '%Y/%m/%d') >= '2008/05/01' ORDER BY totalscore ASC

 

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.