Ciao ragazzi cosa sbaglio in questa query? in pratica mi stampa solamente Nick1, mentre tutti gli altrri provenienti da UNION risultano vuori (ma non è così).

Codice PHP:
$quem "SELECT Nick as Nick1 FROM torneo_yes  WHERE Posizione = '1' 
UNION SELECT Nick as Nick2 FROM torneo_yes  WHERE Posizione = '2' 
UNION SELECT Nick as Nick3 FROM torneo_yes  WHERE Posizione = '3' 
UNION SELECT Nick as Nick4 FROM torneo_yes  WHERE Posizione = '4' 
UNION SELECT Nick as Nick5 FROM torneo_yes  WHERE Posizione = '5' 
UNION SELECT Nick as Nick6 FROM torneo_yes  WHERE Posizione = '6' 
UNION SELECT Nick as Nick7 FROM torneo_yes  WHERE Posizione = '7' 
UNION SELECT Nick as Nick8 FROM torneo_yes  WHERE Posizione = '8' 
UNION SELECT Nick as Nick9 FROM torneo_yes  WHERE Posizione = '9' 
UNION SELECT Nick as Nick10 FROM torneo_yes  WHERE Posizione = '10' 
UNION SELECT Nick as Nick11 FROM torneo_yes  WHERE Posizione = '11'
UNION SELECT Nick as Nick12 FROM torneo_yes  WHERE Posizione = '12'  
UNION SELECT Nick as Nick13 FROM torneo_yes  WHERE Posizione = '13' 
UNION SELECT Nick as Nick14 FROM torneo_yes  WHERE Posizione = '14' 
UNION SELECT Nick as Nick15 FROM torneo_yes  WHERE Posizione = '15' 
UNION SELECT Nick as Nick16 FROM torneo_yes  WHERE Posizione = '16'"
;
$rem mysql_query($quem$db) or die(mysql_error());
$trem mysql_fetch_array($rem);