CulturedCheese / thesis-project

4 stars 4 forks source link

join country and user data without duplicating rows #121

Closed ClimbsRocks closed 9 years ago

ClimbsRocks commented 9 years ago

to do this, we'll have to group by user.id, and then probably select the max of the rest of the non-grouped columns.

ClimbsRocks commented 9 years ago

figured this out. you need to group by the user.id and then select the max of the activeRepos column.