I have a Log model with following columns:
["id", "username", "event", "parameters", "extras", "created_at", "updated_at"]
I have indexes created_at and username.
Now, I would like to get the first log for each username ordered by created_at.
One way to do this is to run the following query for each username:
log = Log.where("username = :username", username: username).order(:created_at).first
But this obviously queries the database a lot of times (equal to the number of usernames). Is there some way to do only one database query?
 
     
     
    