I could not find any example for this in Unity.
I have the following database:
Would it be possible to JOIN the leaders
and users
in one query and retrieve like top 10 based on score?
I want to do the join to be able to display information such as name and photo.
Theoretically, i can retrieve leaders
to a list.
than retrieve users
to a list,
than do matching and sorting
but this is quite complex operations for a simple task that hopefully can be done with some kind of query.