jatin1726
I actually ran into this same problem, and I found a clever solution from someone whose handle I forget now...
But here you go:
https://drive.google.com/open?id=0B-xiq ... mliTUJ1SGM
To get your player at the bottom just add another Text field and use Array.At(Array.indexOf(playerName)) & ": " & myScore.
Or you could even use a 2D array and store as many other columns as you need in your array, just use the X=0 column to store your indices (like player id).
SELECT
*
FROM scores
where Name = <C2 variable holding his nickname>
You should use caution in using this unless you can guarantee that your nicknames are unique, otherwise confusion will ensue. Most databases use a player index or player id to ensure uniqueness in your database keys.
If you have two players named "jatin" then that SQL statement will return two rows of data! Will the real jatin please stand up?