diff --git a/scripts/register/noowner.sql b/scripts/register/noowner.sql index 5901c995c..662ad4e6c 100644 --- a/scripts/register/noowner.sql +++ b/scripts/register/noowner.sql @@ -1,3 +1,3 @@ -select id ID, faction Partei, race Rasse, status Status - from subscriptions - where user=0; +select s.id ID, s.faction Partei, s.race Rasse, s.status Status, g.name Spiel + from subscriptions s, games g + where s.user=0 and g.id=s.game;