Ver Mensaje Individual
  #6 (permalink)  
Antiguo 21/01/2009, 05:54
t0n3
 
Fecha de Ingreso: diciembre-2008
Mensajes: 6
Antigüedad: 16 años, 1 mes
Puntos: 0
Respuesta: Actualizar campos de una tabla apartir de otros

Ya está la solución es esta:

update pruebas p1
set MIN=(select MIN from pruebas p2 where p2.ID=p1.ID and p2.mes='DEC' and p2.hora=p1.hora),
MAX=(select MAX from pruebas p2 where p2.ID=p1.ID and p2.mes='DEC' and p2.hora=p1.hora)
where p1.mes='JAN'
and p1.ID=2300