Your statements are ideal functional equivalents for
SELECT Min(Score) FROM Scores and
SELECT Max(Score) FROM Scores .
If you really want to get the first and last point, you'll need an AutoNumber or DateTime field to indicate the order in which you enter. Then you can request:
SELECT First(Score), Last(Score) FROM Scores ORDER BY MySortKey
If you save your question, the correct syntax would be SELECT FIRST(score) FROM (SELECT score FROM scores) ORDER BY score ASC ,
or simplified
SELECT FIRST(score) FROM scores ORDER BY score ASC
source share