Código:
he querido hacer la suma asi:select r.campo, COUNT(r.campo) as Cantidad_estado from tabla1 p, tabla2 r where p.Ramo = cast(r.RAMO as CHAR(2)) group by r.campo
SUM (CONVERT campo TO INT)
o
sum(cast(campo as int))
no funca porque me tira el siguiente error:
Conversion failed when converting the nvarchar value '---' to data type int.
alguna idea??
Graciasss
leo