19/01/2009, 20:59
|
| Colaborador | | Fecha de Ingreso: julio-2007 Ubicación: Mexico, D.F.
Mensajes: 6.482
Antigüedad: 17 años, 6 meses Puntos: 180 | |
Respuesta: como agrupar y sumar filas Angeles
Las variables en SQL Server, se definen con arroba (@)
DECLARE @MyFecha DATETIME
SET @MyFecha = GETDATE()
select doctime,count(*) as no_filas, docdate
from tabla
where docdate >= @MyFecha
group by doctime, docdate |