Last active
January 6, 2016 16:54
-
-
Save juniorb2ss/e4643ae9518484ca0654 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT | |
users.name, | |
chars.*, | |
guild.name as 'guild_name' | |
FROM | |
char_wstats as chars | |
JOIN pvpm_data as users ON chars.char_id = users.id | |
JOIN guild ON chars.char_id = guild.char_id | |
ORDER BY | |
chars.kill_count DESC | |
LIMIT 50 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment