'update'
[vchess.git] / server / db / queryGameStat.sql
1 select name,total
2 from GameStat g
3 join variants v on g.vid = v.id
4 where total > 0
5 order by total desc;