If I have a mysql table which had primary ids and another field called gameScore can I do something along the lines of...
SELECT gameScore FROM table1 WHERE id =
looks funny - but maybe this is what you're after.
select max( gameScore ) from table1 where id = 100 and gameScore < ( select max( gameScore ) from table1 where id = 100 )