22/11/2011, 21:32
|
| | | Fecha de Ingreso: octubre-2007 Ubicación: España
Mensajes: 1.091
Antigüedad: 17 años, 2 meses Puntos: 85 | |
Respuesta: sacar porcentaje Otra alternativa puede ser la consulta
Código:
select
t1.c as menos_de_30,
t2.c as mas_de_30,
t1.c / (t1.c + t2.c) as ratio
from
( select count(*) c from Solicitud_Help
where
datediff(mi, Fecha_ingreso, Fecha_Cierre) <= 30 ) t1,
( select count(*) c from Solicitud_Help
where
datediff(mi, Fecha_ingreso, Fecha_Cierre) > 30 ) t2
Saludos |