Ver Mensaje Individual
  #2 (permalink)  
Antiguo 21/01/2009, 13:16
Avatar de michael_045
michael_045
 
Fecha de Ingreso: enero-2009
Mensajes: 13
Antigüedad: 16 años
Puntos: 0
Respuesta: quedarte con la parte de un campo

tendras k hacer algo como lo siguiente

-------------------

SELECT
convert(VARCHAR(5),tb.campo_fecha,108) hora
,count(convert(VARCHAR(5),tb.campo_fecha,108)) total
FROM
mitabla tb
GROUP BY
convert(VARCHAR(5),tb.campo_fecha,108)
ORDER BY
convert(VARCHAR(5),tb.campo_fecha,108) ASC
-------------------

espero te sirva

Salu2