cuando sacas los resultados haces un primer mysql_fetch_array que te hace perder el primer registro, y luego ya haces el while con mysql_fetch_array con el resto de registros:
Código PHP:
$datos = mysql_fetch_array ($resultadoSQL);
$alguno=false;
while ($datos = mysql_fetch_array ($resultadoSQL)){
$alguno=true;
pon, simplemente:
Código PHP:
$alguno=false;
while ($datos = mysql_fetch_array ($resultadoSQL)){
$alguno=true;
quitale el primer mysql_fetch_array