Hi,
Say, I am building a small gaming portal where people can play small games and score points.
a player can play different games and the scores are logged in.
now, given a user ID, how do I build my dataset such that we can retrieve a table in this sort
user_id | game_id | rank
now, the rank is relative just to that game.
i'm finding it extremely hard, that is why i am calling for some help.
this far, i've been able to fetch a similar table for a user only when the game_id was provided. I used variables in mysql for my small dysfunctional query.
Say, I am building a small gaming portal where people can play small games and score points.
a player can play different games and the scores are logged in.
now, given a user ID, how do I build my dataset such that we can retrieve a table in this sort
user_id | game_id | rank
now, the rank is relative just to that game.
i'm finding it extremely hard, that is why i am calling for some help.
this far, i've been able to fetch a similar table for a user only when the game_id was provided. I used variables in mysql for my small dysfunctional query.
Comment