Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

PHP Forum


You are currently viewing our PHP Forum as a guest. Please register to participate.
Login



Freelance Jobs

Reply
PHP to calculate next number in sequence from MySQL table ?
Old 12-04-2009, 09:12 AM PHP to calculate next number in sequence from MySQL table ?
Novice Talker

Posts: 6
Trades: 0
I have a mysql table with the following data in it:

user_id score
1234 28
4654 -15
5986 15
3657 10

If i have PHP select the score column for user 5986 how could i then have PHP calculate the next highest score in the MySQL table ?
toasty525 is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 12-04-2009, 09:41 AM Re: PHP to calculate next number in sequence from MySQL table ?
chrishirst's Avatar
Missing! presumed drunk.

Posts: 42,384
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
Why not just have SQL server to do that? That's exactly the kind of thing it excels at! AND it's much quicker than switching to PHP for sorting.

get the "top" scorer
Code:
SELECT userid FROM table MAX(score);
second highest
Code:
SELECT userid FROM table ORDER BY score ASC LIMIT 1,1;
__________________
Chris. ->>
Please login or register to view this content. Registration is FREE
<<-

A foolish consistency is the hobgoblin of little minds
Thought for today:- Is SEO the only industry where all the cowboys are Indians?
chrishirst is online now
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Reply     « Reply to PHP to calculate next number in sequence from MySQL table ?
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.62432 seconds with 12 queries