17.03.2014, 15:20
Hi,
I have two tables:
and
And i want to get players which have the most XP, but i want to order that from both tables, how to make that querie?
Because if i do for ex for players table
I tried
But this don't work.
I have two tables:
Код:
players
Код:
players1
Because if i do for ex for players table
Код:
SELECT XP FROM players ORDER BY XP DESC LIMIT 10
Код:
SELECT XP FROM players,players1 ORDER BY XP DESC LIMIT 10