Jump to content

SQL: Compute the number of test scores that are LOWER?


mrherman

Recommended Posts

Mysql table of about 2000 rows.

 

How would one write an SQL statement that does the following in a table of test scores?

 

For each record (student), compute the number of records in the table that had a test score LOWER than the score achieved by the student, and UPDATE the table with the "LOWER" data for each student.

 

Example

SCORE    LOWER

50        56

90        1700

80        1132

...      ...

 

Of course, I want to use PHP (which I'm struggling to learn) to do this work, so a point or two there would hurt either. 

 

Thanks!!

Link to comment
Share on other sites

<?php

$score = mysql_result( mysql_query( "SELECT score FROM students WHERE `name`='joe'" ), 0 );
$lower = mysql_query( "SELECT * FROM students WHERE `score` < '" . $score . "'");
mysql_query( "UPDATE `students` SET `lower` = '" . mysql_num_rows( $lower ) . "' WHERE `name`='joe'" );

?>

 

Obviously without knowledge of your db structure, i had to make some things up that you will need to change accordingly. Hope this helps.

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.