Ver Mensaje Individual
  #3 (permalink)  
Antiguo 30/12/2008, 12:40
jurena
Colaborador
 
Fecha de Ingreso: marzo-2008
Ubicación: Cáceres
Mensajes: 3.735
Antigüedad: 16 años, 9 meses
Puntos: 300
Respuesta: como restringir que solo salgan algunos resultados de un campo?

Prueba esto:

Código sql:
Ver original
  1. SELECT p.testdim, p.testdate, h.codi,hf.STATUS, h.date0,
  2. datediff(now(), h.date0) AS diesinsemin, h.parts, h.curservices,
  3. a.herd_id, MAX( a.parity ) , MAX( a.endparitydate )
  4. FROM production p INNER JOIN herd h ON p.herd_id = h.herd_id INNER JOIN
  5.  ag_parity a  ON a.herd_id = h.herd_id  INNER JOIN herd_females hf ON p.herd_id = hf.herd_id
  6. WHERE hf.STATUS <> 'n'
  7. GROUP BY a.herd_id

No lo he probado.