lo unico q puedo decir es q la consulta se haria asi:
Código PHP:
Ver original$bus=mysql_query("select *from tabla where raza='colombiano'");
$con=mysql_fetch_array($bus);
<table>
<tr>
<td>Raza</td><td>Otros campos</td>
</tr>
<?php
do
{
echo '<tr>';
echo '<td>' . $con['raza'] . '</td><td>' .$con['otro_campo'].'</td>';
echo '</tr>';
}
?>
</table>
ojala te sirva esto