Ver Mensaje Individual
  #4 (permalink)  
Antiguo 18/01/2011, 09:35
Avatar de flaviovich
flaviovich
 
Fecha de Ingreso: agosto-2005
Ubicación: Lima, Peru
Mensajes: 2.951
Antigüedad: 19 años, 4 meses
Puntos: 39
Respuesta: obtener el total de registros obtenidos en una consulta

Esta es la idea:
Código SQL:
Ver original
  1. DECLARE @reg INT
  2.  
  3. SELECT h.hora AS hora1,h.marca,h.target, h.fecha AS hfecha,p.hora,p.peso,p.fecha,o.linea
  4. FROM optimas AS o
  5. INNER JOIN pesos AS p ON o.codigo = p.codoptima
  6. INNER JOIN htargets AS h ON o.codigo = h.codoptima
  7. WHERE o.linea = @linea
  8. AND p.fecha >= @fecha AND h.fecha >= @fecha
  9. AND p.hora = @hora AND h.hora = @hora
  10. ORDER BY fecha
  11.  
  12. SET @reg = @@rowcount
  13.  
  14. SELECT top 1 @reg AS 'RowsReturned'
__________________
No repitamos temas, usemos el Motor de busquedas
Plantea bien tu problema: Ayúdanos a ayudarte.