I am having following table structure

and having the following Data in this table

Now I want to query in such a way so that I can have values of all the columns + the value of max(currenttime) for a particular game_id.
i am running the following query
SELECT _id, game_id, inning_id, scoretype, oponentonescore, oponenttwoscore, currenttime, MAX( currenttime ) AS latest FROM game_scores WHERE game_id = ‘2268’
and as a result i am getting only one row as in the following result

But i want want all rows matching the criteria(i.e. game id 2268)
How to compose Query to achieve this?
Thanks in advance
i’m sorry, i haven’t actually tested this, but maybe something like this would do the trick:
although this solution is heavier on the database than it is heavy on the application to figure it out after the query is back from the database (like alex suggested).