Can't figure out for the life of me why this wont work

<?php
$i = 1;
$result = mysql_query("SELECT * FROM account WHERE org='$org' ORDER BY points asc");

while($row = mysql_fetch_array($result))
{
echo "<tr>";
echo "<td>".$i++."</td>";
echo "<td>".$row['name']."</td>";
echo "<td>".$row['org']."</td>";
echo "<td>".$row['points']."</td>";
echo "</tr>";
}
?>
There are no error messages, it just does not sort them in the order of highest points to lowest.Seems t be still sorting it by default.
NVM I figured it out I just used the ABS SQL function to sort.