Gracias, mi consulta ha kedado asi:
Código:
SELECT operaciones.fecha, COUNT(num_operacion), SUM(monto),
SUM(interes)
FROM operaciones
WHERE operaciones.fecha BETWEEN '01-11-2005' AND
'30-11-2005'
GROUP BY fecha
ORDER BY fecha
ahora bien mi tabla tiene un campo
estado ke puede tener el valor 'NULO' o 'NO-NULO', como hago para agregar un count k me diga cuantas operaciones son nulas por dia?