Have noticed that the aggregate Last function is pretty useful.
But is there a way around it, using standard SQL?
With last, I can do something like this --
Select tblGame.BaseBallPlayer, Last(tblGame.Hits), Last(tblGame.AtBats)
From tblGame
Group By tblGame.BaseBallPlayer
But is there a way around it, using standard SQL?
With last, I can do something like this --
Select tblGame.BaseBallPlayer, Last(tblGame.Hits), Last(tblGame.AtBats)
From tblGame
Group By tblGame.BaseBallPlayer