Ver Mensaje Individual
  #7 (permalink)  
Antiguo 27/09/2010, 17:12
Avatar de carlos_belisario
carlos_belisario
Colaborador
 
Fecha de Ingreso: abril-2010
Ubicación: Venezuela Maracay Aragua
Mensajes: 3.156
Antigüedad: 14 años, 8 meses
Puntos: 461
Respuesta: Sumar registros de la misma tabla sql

Cita:
Iniciado por ommm Ver Mensaje
Por partes... el distinc... no me muestra los resultados en pantalla....
me da este error

Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in /home/pruebasa/public_html/jegatura.php on line 14


Código PHP:
$result=mysql_query("SELECT id, jefatura FROM (SELECT DISTINCT jefatura FROM ext)"$link);

echo
"<table width=600>
<tr>
<td><b>Jefatura</b></td><td><b>Extintores</b></td></tr>"
;
while(
$row=mysql_fetch_row($result)){
  echo
"<tr>
    <td>$row[1]</td><td>$row[2]</td>
    </tr>"
;
}
echo
"</table>"
Lo siento, pero es que soy bastante novata en esto. Gracias :D
depura tu consulta para que te indique el error especifico de mysql ej
Código PHP:
Ver original
  1. $result=mysql_query("SELECT id, jefatura FROM (SELECT DISTINCT jefatura FROM ext)", $link) or die (mysql_error());
y creo que la solucion que te da el amigo IEKK es mas viable sino entendi mal yo tambien ya que no tiens que hacer dos consultas saludos
__________________
aprende d tus errores e incrementa tu conocimientos
it's not a bug, it's an undocumented feature By @David
php the right way