28/11/2005, 15:49
|
| Colaborador | | Fecha de Ingreso: diciembre-2004
Mensajes: 1.802
Antigüedad: 20 años Puntos: 38 | |
Código:
SELECT
fecha
,COUNT(num_operacion)
,SUM(monto)
,SUM(interes)
,SUM ( CASE estado When 'NULO' Then 1 Else 0 End ) As OperacionesNulas
,SUM ( CASE estado When 'NO-NULO' Then 1 Else 0 End ) As OperacionesNoNulas
FROM
operaciones
WHERE
fecha BETWEEN '01-11-2005' AND '30-11-2005'
GROUP BY
fecha
ORDER BY
fecha
|