Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have to get the median, mode and range of test scores from one column in a table but I am unsure how to go about doing that. When you connect to the database using java, you are normally returned a ResultSet that you can make a table or something out of but how do you get particular numbers or digits? Is there an SQL command to get the median/mode/range or will I have to calculate this myself, and how do you pull out numbers from the table in order to be able to calculate the mode/median/range?

Thanks.

share|improve this question
1  
What database are you using? Any mean/mode/range calculations in SQL are likely to be DB specific. – Stephen C Apr 11 '10 at 5:56
He tagged MySQL. – BalusC Apr 11 '10 at 6:03
MODE and MEDIAN are not supported directly in MySQL 5.5. RANGE is indirectly supported by the difference between MIN and MAX. You can create custom aggregate functions if you desire - or need to. Calculating the MODE and MEDIAN are not particularly easy. – Jonathan Leffler Apr 11 '10 at 6:39

2 Answers

This must be doable in pure SQL. Range is easy with MIN() and MAX() functions. For the remnant, I am no statistics expert, so I can't tell from head, but I found a link which may be of use: http://www.freeopenbook.com/mysqlcookbook/mysqlckbk-chp-13-sect-2.html

share|improve this answer

Im not very familiar with SQL asides from the necessities... however I searched and found http://www.sqlteam.com/article/computing-the-trimmed-mean-in-sql for mean(actually uses your exact question in an example), http://scorreiait.wordpress.com/2008/10/28/how-to-compute-a-median-in-sql/for meidan, http://www.mail-archive.com/cf-talk@houseoffusion.com/msg44660.html for mode.

I don't know if these are database specific, but they seem like they will get the job done as efficient as possible. Goodluck!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.