| SQL - Questions and Answers Have a SQL question? Post it here. First do a search to see if someone hasn't already answered it. |
|
|||
List players by numbers of points?List players by numbers of points (descending, so the best is at the top) and from oldest to youngest (if 2 players have same number of points, the oldest would be first).
|
|
|||
SELECT p.lastname, p.firstname, SUM(r.value) AS Total, MAX( r.value) AS Maximum, p.birthdate |
![]() |
| Thread Tools | Search this Thread |
| Rate This Thread | |
|
|