Advertencia: valor NULL eliminado por el agregado u otra operación SET
Warning: Null value is eliminated by an aggregate or other SET operation
select max(cast(null as int))
go
solución:
sum(case when t2.id_DTE is null then 0 else 1 end) as aceptado
fuente
No hay comentarios.:
Publicar un comentario